cleaned project, added a first working version of the bootloader
This commit is contained in:
parent
71b3c6f703
commit
663ecf18cf
|
|
@ -0,0 +1,69 @@
|
||||||
|
# Build directories
|
||||||
|
build/
|
||||||
|
build-*/
|
||||||
|
_build*/
|
||||||
|
cmake-build-*/
|
||||||
|
|
||||||
|
# Sysbuild / child images
|
||||||
|
_child_image/
|
||||||
|
modules/
|
||||||
|
mcuboot/
|
||||||
|
zephyr/
|
||||||
|
|
||||||
|
# Object and binary files
|
||||||
|
*.o
|
||||||
|
*.a
|
||||||
|
*.so
|
||||||
|
*.d
|
||||||
|
*.elf
|
||||||
|
*.bin
|
||||||
|
*.hex
|
||||||
|
*.map
|
||||||
|
*.lst
|
||||||
|
*.out
|
||||||
|
|
||||||
|
# Firmware update artifacts
|
||||||
|
*.zip
|
||||||
|
*.log
|
||||||
|
*.signed
|
||||||
|
*.update
|
||||||
|
|
||||||
|
# CMake generated files
|
||||||
|
CMakeCache.txt
|
||||||
|
CMakeFiles/
|
||||||
|
cmake_install.cmake
|
||||||
|
CTestTestfile.cmake
|
||||||
|
Makefile
|
||||||
|
*.cmake
|
||||||
|
|
||||||
|
# Zephyr generated files
|
||||||
|
zephyr/
|
||||||
|
modules/
|
||||||
|
*.config
|
||||||
|
*.conf.old
|
||||||
|
include/generated/
|
||||||
|
.zephyr
|
||||||
|
|
||||||
|
# IDE/editor files
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*.user
|
||||||
|
*.workspace
|
||||||
|
*.project
|
||||||
|
*.cproject
|
||||||
|
|
||||||
|
# Python cache
|
||||||
|
__pycache__/
|
||||||
|
*.pyc
|
||||||
|
|
||||||
|
# Backup / temp files
|
||||||
|
*~
|
||||||
|
*.bak
|
||||||
|
*.orig
|
||||||
|
|
||||||
|
# OS-specific
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
{
|
|
||||||
// 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"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
{
|
|
||||||
"nrf-connect.debugging.bindings": {
|
|
||||||
"${workspaceFolder}/build_4/PHF000-Firmware": "Launch PHF000-Firmware"
|
|
||||||
},
|
|
||||||
"files.associations": {
|
|
||||||
"nrfx_temp.h": "c"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -24,4 +24,8 @@ target_include_directories(app PRIVATE
|
||||||
drivers/battery_adc
|
drivers/battery_adc
|
||||||
drivers/temperature
|
drivers/temperature
|
||||||
drivers/timer_count
|
drivers/timer_count
|
||||||
)
|
)
|
||||||
|
|
||||||
|
test_sysbuild()
|
||||||
|
|
||||||
|
target_sources(app PRIVATE src/main.c)
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
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)
|
|
||||||
|
|
@ -114,6 +114,31 @@
|
||||||
status = "okay";
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
&flash0 {
|
||||||
|
partitions {
|
||||||
|
compatible = "fixed-partitions";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
|
||||||
|
boot_partition: partition@0 {
|
||||||
|
label = "mcuboot";
|
||||||
|
reg = <0x00000000 0x10000>; // 64 KB
|
||||||
|
};
|
||||||
|
slot0_partition: partition@10000 {
|
||||||
|
label = "image-0";
|
||||||
|
reg = <0x00010000 0x1C000>; // 112 KB
|
||||||
|
};
|
||||||
|
slot1_partition: partition@2C000 {
|
||||||
|
label = "image-1";
|
||||||
|
reg = <0x0002C000 0x1C000>; // 112 KB
|
||||||
|
};
|
||||||
|
storage_partition: partition@48000 {
|
||||||
|
label = "storage";
|
||||||
|
reg = <0x00048000 0x8000>; // 32 KB
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};*/
|
||||||
&flash0 {
|
&flash0 {
|
||||||
|
|
||||||
partitions {
|
partitions {
|
||||||
|
|
@ -123,19 +148,19 @@
|
||||||
|
|
||||||
boot_partition: partition@0 {
|
boot_partition: partition@0 {
|
||||||
label = "mcuboot";
|
label = "mcuboot";
|
||||||
reg = <0x00000000 0xC000>;
|
reg = <0x00000000 0x10000>;
|
||||||
};
|
};
|
||||||
slot0_partition: partition@c000 {
|
slot0_partition: partition@10000 {
|
||||||
label = "image-0";
|
label = "image-0";
|
||||||
reg = <0x0000C000 0x37000>;
|
reg = <0x000010000 0x36000>;
|
||||||
};
|
};
|
||||||
slot1_partition: partition@43000 {
|
slot1_partition: partition@46000 {
|
||||||
label = "image-1";
|
label = "image-1";
|
||||||
reg = <0x00043000 0x37000>;
|
reg = <0x00046000 0x36000>;
|
||||||
};
|
};
|
||||||
storage_partition: partition@7a000 {
|
storage_partition: partition@7c000 {
|
||||||
label = "storage";
|
label = "storage";
|
||||||
reg = <0x0007A000 0x00006000>;
|
reg = <0x0007c000 0x00004000>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
# Suppress "unique_unit_address_if_enabled" to handle some overlaps
|
|
||||||
list(APPEND EXTRA_DTC_FLAGS "-Wno-unique_unit_address_if_enabled")
|
|
||||||
Binary file not shown.
|
|
@ -1,48 +0,0 @@
|
||||||
# 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
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
||||||
{
|
|
||||||
"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"
|
|
||||||
}
|
|
||||||
|
|
@ -1,182 +0,0 @@
|
||||||
# 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
|
|
||||||
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
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)
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
The system is: Linux - 6.8.0-64-generic - x86_64
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
||||||
/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
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
|
||||||
|
|
@ -1,45 +0,0 @@
|
||||||
# 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:
|
|
||||||
|
|
||||||
|
|
@ -1,258 +0,0 @@
|
||||||
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
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/shields/*/Kconfig.shield"
|
|
||||||
osource "/home/miguel/ncs/v3.0.2/nrf/boards/shields/*/Kconfig.shield"
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/shields/*/Kconfig.defconfig"
|
|
||||||
osource "/home/miguel/ncs/v3.0.2/nrf/boards/shields/*/Kconfig.defconfig"
|
|
||||||
|
|
@ -1,141 +0,0 @@
|
||||||
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
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
# 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"
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
# Load Zephyr board Kconfig descriptions.
|
|
||||||
osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/Kconfig"
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
# Load Zephyr board defconfig descriptions.
|
|
||||||
osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/Kconfig.defconfig"
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
# Load board Kconfig descriptions.
|
|
||||||
osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/Kconfig.phf000_board"
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
# Load Sysbuild board Kconfig descriptions.
|
|
||||||
osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/Kconfig.sysbuild"
|
|
||||||
|
|
@ -1,95 +0,0 @@
|
||||||
# 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"
|
|
||||||
|
|
@ -1,95 +0,0 @@
|
||||||
# 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"
|
|
||||||
|
|
@ -1,95 +0,0 @@
|
||||||
# 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"
|
|
||||||
|
|
@ -1,95 +0,0 @@
|
||||||
# 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"
|
|
||||||
Binary file not shown.
|
|
@ -1,975 +0,0 @@
|
||||||
# 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
|
|
||||||
|
|
@ -1,623 +0,0 @@
|
||||||
# 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
|
|
||||||
|
|
||||||
|
|
@ -1,623 +0,0 @@
|
||||||
# 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
|
|
||||||
|
|
||||||
|
|
@ -1,623 +0,0 @@
|
||||||
# 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
|
|
||||||
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
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)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,80 +0,0 @@
|
||||||
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 "")
|
|
||||||
|
|
@ -1,91 +0,0 @@
|
||||||
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 "")
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
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)
|
|
||||||
|
|
@ -1,807 +0,0 @@
|
||||||
#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(<hip/hip_version.h>)
|
|
||||||
# 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(<hip/hip_version.h>)
|
|
||||||
# include <hip/hip_version.h>
|
|
||||||
# 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
|
|
||||||
Binary file not shown.
|
|
@ -1,795 +0,0 @@
|
||||||
/* 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(<hip/hip_version.h>)
|
|
||||||
# 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(<hip/hip_version.h>)
|
|
||||||
# include <hip/hip_version.h>
|
|
||||||
# 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;
|
|
||||||
}
|
|
||||||
Binary file not shown.
|
|
@ -1,24 +0,0 @@
|
||||||
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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,34 +0,0 @@
|
||||||
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.
|
|
||||||
|
|
||||||
|
|
@ -1,460 +0,0 @@
|
||||||
/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
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1,8 +0,0 @@
|
||||||
# Additional clean files
|
|
||||||
cmake_minimum_required(VERSION 3.16)
|
|
||||||
|
|
||||||
if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "")
|
|
||||||
file(REMOVE_RECURSE
|
|
||||||
"zephyr/include/generated/zephyr/syscalls"
|
|
||||||
)
|
|
||||||
endif()
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
|
||||||
|
|
@ -1,86 +0,0 @@
|
||||||
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
|
|
||||||
|
|
@ -1,86 +0,0 @@
|
||||||
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
|
|
||||||
|
|
@ -1,634 +0,0 @@
|
||||||
# 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:
|
|
||||||
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -1,258 +0,0 @@
|
||||||
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
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/shields/*/Kconfig.shield"
|
|
||||||
osource "/home/miguel/ncs/v3.0.2/nrf/boards/shields/*/Kconfig.shield"
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/shields/*/Kconfig.defconfig"
|
|
||||||
osource "/home/miguel/ncs/v3.0.2/nrf/boards/shields/*/Kconfig.defconfig"
|
|
||||||
|
|
@ -1,141 +0,0 @@
|
||||||
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
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
# 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"
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
# Load Zephyr board Kconfig descriptions.
|
|
||||||
osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/Kconfig"
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
# Load Zephyr board defconfig descriptions.
|
|
||||||
osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/Kconfig.defconfig"
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
# Load board Kconfig descriptions.
|
|
||||||
osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/Kconfig.phf000_board"
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
# Load Sysbuild board Kconfig descriptions.
|
|
||||||
osource "/home/miguel/Documents/GardenProject/Software/PHF000-Firmware/boards/Mi_labs/phf000_board/Kconfig.sysbuild"
|
|
||||||
|
|
@ -1,95 +0,0 @@
|
||||||
# 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"
|
|
||||||
|
|
@ -1,95 +0,0 @@
|
||||||
# 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"
|
|
||||||
|
|
@ -1,95 +0,0 @@
|
||||||
# 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"
|
|
||||||
|
|
@ -1,95 +0,0 @@
|
||||||
# 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"
|
|
||||||
Binary file not shown.
File diff suppressed because one or more lines are too long
|
|
@ -1,53 +0,0 @@
|
||||||
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
|
|
||||||
|
|
@ -1,53 +0,0 @@
|
||||||
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
|
|
||||||
|
|
@ -1,54 +0,0 @@
|
||||||
# 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}")
|
|
||||||
|
|
@ -1,682 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
"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"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
|
|
@ -1,39 +0,0 @@
|
||||||
# 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()
|
|
||||||
|
|
||||||
|
|
@ -1,39 +0,0 @@
|
||||||
# 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()
|
|
||||||
|
|
||||||
|
|
@ -1,39 +0,0 @@
|
||||||
# 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()
|
|
||||||
|
|
||||||
|
|
@ -1,39 +0,0 @@
|
||||||
# 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()
|
|
||||||
|
|
||||||
|
|
@ -1,39 +0,0 @@
|
||||||
# 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()
|
|
||||||
|
|
||||||
|
|
@ -1,39 +0,0 @@
|
||||||
# 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()
|
|
||||||
|
|
||||||
|
|
@ -1,39 +0,0 @@
|
||||||
# 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()
|
|
||||||
|
|
||||||
|
|
@ -1,44 +0,0 @@
|
||||||
# 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()
|
|
||||||
|
|
||||||
|
|
@ -1,39 +0,0 @@
|
||||||
# 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()
|
|
||||||
|
|
||||||
|
|
@ -1,44 +0,0 @@
|
||||||
# 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()
|
|
||||||
|
|
||||||
|
|
@ -1,44 +0,0 @@
|
||||||
# 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()
|
|
||||||
|
|
||||||
|
|
@ -1,39 +0,0 @@
|
||||||
# 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()
|
|
||||||
|
|
||||||
|
|
@ -1,39 +0,0 @@
|
||||||
# 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()
|
|
||||||
|
|
||||||
|
|
@ -1,49 +0,0 @@
|
||||||
# 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()
|
|
||||||
|
|
||||||
|
|
@ -1,44 +0,0 @@
|
||||||
# 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()
|
|
||||||
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue