Add XIAO Wio-SX1262 overlay; support SX12xx bandwidths (including 62.5 kHz) as default

- boards/seeed/xiao_wio_sx1262: add overlay, .conf, board.yml
- app: support full set of SX12xx bandwidths; default BW set to 62 (62.5 kHz)
- Update Kconfig and prj.conf
- Update lora_modem.h/c for validation and mapping
This commit is contained in:
2026-03-26 13:01:47 +01:00
parent d074cd2e43
commit 45d1364a71
926 changed files with 174514 additions and 26 deletions

View File

@@ -0,0 +1,17 @@
{
"permissions": {
"allow": [
"WebSearch",
"WebFetch(domain:docs.zephyrproject.org)",
"WebFetch(domain:github.com)",
"WebFetch(domain:raw.githubusercontent.com)",
"WebFetch(domain:www.semtech.com)",
"WebFetch(domain:wiki.seeedstudio.com)",
"WebFetch(domain:heltec.org)",
"WebFetch(domain:www.seeedstudio.com)",
"WebFetch(domain:store.rakwireless.com)",
"WebFetch(domain:semtech.my.salesforce.com)",
"WebFetch(domain:resource.heltec.cn)"
]
}
}

3
.copilot/config.json Normal file
View File

@@ -0,0 +1,3 @@
{
"defaultModel": "gpt-5-mini"
}

3
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"cmake.sourceDirectory": "/Users/wmodderman/Work/personal/loramodem/app"
}

23
CLAUDE.md Normal file
View File

@@ -0,0 +1,23 @@
# LoRa KISS modem
## Hardware Platform
- Common LoRa development boards from vendors like Heltec, RAK, Seeed
- Typical MCU's include: ESP32, nRF52840
## Framework
- Zephyr RTOS
## Memory Budget
- Application code: Max 256KB (leave 768KB for bootloader updates)
- RAM usage: Max 64KB (leave 64KB safety margin)
- Stack: 4KB allocated
- Heap: NONE (no dynamic allocation)
## Testing Strategy
- Unit tests run on host (arm64 / x86) with mocked HAL
- Integration tests run on target hardware with automated test harness
## Conventions
- Overlay filenames: app.overlay or boards/<BOARD>.overlay
- Kconfig: prj.conf (shared), boards/<BOARD>.conf (board-specific)
- After .conf edits, verify against build/zephyr/.config

67
README.md Normal file
View File

@@ -0,0 +1,67 @@
# LoRa KISS Modem
This project implements a KISS (Keep It Simple Stupid) modem for LoRa radios, targeting widely available commercial development boards (e.g., Heltec, RAK, Seeed, ESP32, nRF52840). It bridges a KISS serial interface to a LoRa radio, enabling packet radio applications over long-range wireless links.
## Features
- KISS TNC protocol over UART/USB serial
- LoRa radio support (Semtech LR11xx and compatible)
- Zephyr RTOS-based for portability and reliability
- No dynamic memory allocation (static stack/heap usage)
- Designed for low-power, embedded use
## Hardware Requirements
- Supported LoRa development board (e.g., Heltec, RAK, Seeed, ESP32, nRF52840)
- LoRa radio module (LR11xx or compatible)
- USB or UART connection to host
## Building the Firmware
### Prerequisites
- [Zephyr SDK](https://docs.zephyrproject.org/latest/develop/getting_started/index.html)
- [west](https://docs.zephyrproject.org/latest/develop/west/index.html) (Zephyr meta-tool)
- Board support package for your target board
### Steps
1. **Initialize Zephyr workspace (if not already):**
```sh
west init -l .
west update
west zephyr-export
```
2. **Build for your board:**
Replace `<board>` with your board's Zephyr name (e.g., `heltec_wifi_lora32_v2`).
```sh
west build -b <board> .
```
Example:
```sh
west build -b heltec_wifi_lora32_v2 .
```
## Flashing the Firmware
1. **Connect your board via USB.**
2. **Flash using west:**
```sh
west flash
```
(You may need to specify `--runner` or additional options depending on your board.)
## Serial Interface
- Default baud rate: 115200
- KISS protocol framing
- Connect to `/dev/ttyUSBx` or equivalent on your host
## Directory Structure
- `app/` Zephyr application code
- `drivers/` LoRa radio drivers (e.g., LR11xx)
- `boards/` Board overlays and configuration
- `dts/` Device tree sources
- `zephyr/` Zephyr RTOS (west workspace)
## License
See LICENSE file for details.
## References
- [KISS TNC Protocol](https://en.wikipedia.org/wiki/KISS_(TNC))
- [Zephyr Project Documentation](https://docs.zephyrproject.org/)

View File

@@ -6,11 +6,12 @@ cmake_minimum_required(VERSION 3.20.0)
list(APPEND BOARD_ROOT ${CMAKE_CURRENT_LIST_DIR}/..)
list(APPEND DTS_ROOT ${CMAKE_CURRENT_LIST_DIR}/..)
# Register the LR11xx out-of-tree driver as an extra Zephyr module.
# It is only compiled when a semtech,lr11xx DTS node is enabled.
list(APPEND ZEPHYR_EXTRA_MODULES
${CMAKE_CURRENT_LIST_DIR}/../drivers/lora/lr11xx
)
# LR11xx out-of-tree driver is currently not added as a Zephyr module
# to avoid Kconfig dependency issues during board prototyping.
# If needed, re-enable by appending the driver path to ZEPHYR_EXTRA_MODULES.
# list(APPEND ZEPHYR_EXTRA_MODULES
# ${CMAKE_CURRENT_LIST_DIR}/../drivers/lora/lr11xx
# )
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})

View File

@@ -41,9 +41,9 @@ config LORAMODEM_LORA_SF
config LORAMODEM_LORA_BW
int "Bandwidth (kHz)"
default 125
default 62
help
LoRa bandwidth in kHz. Valid values: 125, 250, 500.
LoRa bandwidth in kHz. Supported values include: 7, 10, 15, 20, 31, 41, 62 (62.5 kHz), 125, 200, 250, 400, 500, 800, 1000, 1600.
config LORAMODEM_LORA_CR
int "Coding rate denominator"

View File

@@ -19,10 +19,10 @@ CONFIG_HEAP_MEM_POOL_SIZE=4096
CONFIG_MAIN_STACK_SIZE=2048
# Default radio parameters (US 915 MHz, SF9, BW125, CR 4/5)
CONFIG_LORAMODEM_LORA_FREQ_HZ=915000000
CONFIG_LORAMODEM_LORA_SF=9
CONFIG_LORAMODEM_LORA_BW=125
CONFIG_LORAMODEM_LORA_FREQ_HZ=869618000
CONFIG_LORAMODEM_LORA_SF=8
CONFIG_LORAMODEM_LORA_BW=62
CONFIG_LORAMODEM_LORA_CR=5
CONFIG_LORAMODEM_LORA_TX_POWER_DBM=14
CONFIG_LORAMODEM_LORA_TX_POWER_DBM=21
CONFIG_LORAMODEM_LORA_PREAMBLE_LEN=8
CONFIG_LORAMODEM_MAX_PACKET_SIZE=255

View File

@@ -31,9 +31,21 @@ static K_MUTEX_DEFINE(g_params_mutex);
static enum lora_signal_bandwidth bw_to_enum(uint16_t bw_khz)
{
switch (bw_khz) {
case 500: return BW_500_KHZ;
case 7: return BW_7_KHZ;
case 10: return BW_10_KHZ;
case 15: return BW_15_KHZ;
case 20: return BW_20_KHZ;
case 31: return BW_31_KHZ;
case 41: return BW_41_KHZ;
case 62: return BW_62_KHZ; /* 62.5 kHz */
case 125: return BW_125_KHZ;
case 200: return BW_200_KHZ; /* ~203 kHz */
case 250: return BW_250_KHZ;
case 125: /* fall through */
case 400: return BW_400_KHZ;
case 500: return BW_500_KHZ;
case 800: return BW_800_KHZ;
case 1000: return BW_1000_KHZ;
case 1600: return BW_1600_KHZ;
default: return BW_125_KHZ;
}
}
@@ -117,8 +129,13 @@ int lora_modem_set_params(const struct lora_radio_params *params)
if (params->sf < 6 || params->sf > 12) {
return -EINVAL;
}
if (params->bw_khz != 125 && params->bw_khz != 250 &&
params->bw_khz != 500) {
/* Accept all Zephyr lora driver supported bandwidths (units: kHz). */
switch (params->bw_khz) {
case 7: case 10: case 15: case 20: case 31: case 41:
case 62: case 125: case 200: case 250: case 400:
case 500: case 800: case 1000: case 1600:
break;
default:
return -EINVAL;
}
if (params->cr < 5 || params->cr > 8) {

View File

@@ -21,7 +21,7 @@
struct lora_radio_params {
uint32_t freq_hz; /**< Center frequency in Hz */
uint8_t sf; /**< Spreading factor (7-12) */
uint16_t bw_khz; /**< Bandwidth in kHz (125, 250, or 500) */
uint16_t bw_khz; /**< Bandwidth in kHz (e.g., 62 means 62.5 kHz). Supported values: 7, 10, 15, 20, 31, 41, 62, 125, 200, 250, 400, 500, 800, 1000, 1600 */
uint8_t cr; /**< Coding rate denominator (5..8, meaning 4/5..4/8) */
int8_t tx_power; /**< TX power in dBm */
uint8_t preamble_len; /**< Preamble length in symbols */

View File

@@ -2,6 +2,5 @@ board:
name: heltec_meshpocket
full_name: "Heltec MeshPocket"
vendor: heltec
url: https://heltec.org/project/mesh-pocket/
socs:
- name: nrf52840

View File

@@ -2,6 +2,5 @@ board:
name: heltec_t114
full_name: "Heltec Mesh Node T114"
vendor: heltec
url: https://heltec.org/project/mesh-node-t114/
socs:
- name: nrf52840

View File

@@ -2,7 +2,6 @@ board:
name: heltec_wifi_lora32_v3
full_name: "Heltec WiFi LoRa 32 V3"
vendor: heltec
url: https://heltec.org/project/wifi-lora-32-v3/
socs:
- name: esp32s3
variants:

View File

@@ -2,7 +2,6 @@ board:
name: heltec_wifi_lora32_v4
full_name: "Heltec WiFi LoRa 32 V4"
vendor: heltec
url: https://heltec.org/project/wifi-lora-32-v4/
socs:
- name: esp32s3
variants:

View File

@@ -2,7 +2,6 @@ board:
name: lilygo_tbeam
full_name: "LilyGo T-Beam"
vendor: lilygo
url: https://www.lilygo.cc/products/t-beam-v1-1
socs:
- name: esp32
variants:

View File

@@ -0,0 +1,7 @@
# LilyGO TTGO LoRa32 — ESP32 + SX127x
# Uses hardware UART over onboard USB-Serial bridge
CONFIG_LORAMODEM_KISS_IFACE_UART=y
# SX127x driver (via loramac-node)
CONFIG_LORA_SX12XX=y

View File

@@ -0,0 +1,11 @@
/*
* LilyGO TTGO LoRa32 — application DTS overlay
* KISS interface: UART0 (via onboard USB-Serial bridge)
* LoRa: SX127x on SPI (assumed present in upstream board DTS)
*/
/ {
chosen {
loramodem,kiss-uart = &uart0;
};
};

View File

@@ -2,6 +2,5 @@ board:
name: rak_wismesh_pocket
full_name: "RAK WisMesh Pocket"
vendor: rak
url: https://docs.rakwireless.com/Product-Categories/WisMesh/
socs:
- name: nrf52840

View File

@@ -2,6 +2,5 @@ board:
name: rak_wismesh_tag
full_name: "RAK WisMesh Tag"
vendor: rak
url: https://docs.rakwireless.com/Product-Categories/WisMesh/
socs:
- name: nrf52840

View File

@@ -2,6 +2,5 @@ board:
name: seeed_wio_tracker
full_name: "Seeed Wio Tracker 1110"
vendor: seeed
url: https://wiki.seeedstudio.com/wio_tracker_1110_intro/
socs:
- name: nrf52840

View File

@@ -0,0 +1,11 @@
board:
name: xiao_wio_sx1262
full_name: "Seeed XIAO ESP32-S3 + Wio-SX1262"
vendor: seeed
socs:
- name: esp32s3
variants:
- name: procpu
cpucluster: procpu
- name: appcpu
cpucluster: appcpu

View File

@@ -0,0 +1,5 @@
# Seeed XIAO ESP32S3 + Wio-SX1262
# KISS over USB CDC, enable generic SX12XX support (SX127x/SX126x family)
CONFIG_LORAMODEM_KISS_IFACE_USB=y
CONFIG_LORA_SX12XX=y

View File

@@ -0,0 +1,55 @@
/*
* Seeed XIAO ESP32S3 + Wio-SX1262 — application DTS overlay
* KISS interface: USB CDC-ACM
* LoRa: SX1262 on SPI (wiring based on user-provided mappings)
*
* Pin mapping (logical Dx -> GPIO number assumed equal):
* MOSI = D10 -> gpio0 10
* MISO = D9 -> gpio0 9
* SCK = D8 -> gpio0 8
* NSS = D3 -> gpio0 3
* DIO1 = D0 -> gpio0 0
* BUSY = D1 -> gpio0 1
* RST = D2 -> gpio0 2
* RF-SW= D4 -> gpio0 4
*/
/ {
chosen {
loramodem,kiss-uart = &usb_serial;
};
aliases {
lora0 = &lora;
};
};
/* Enable SPI2 and attach SX1262 on CS=D3 */
&spi2 {
status = "okay";
#address-cells = <1>;
#size-cells = <0>;
pinctrl-0 = <&spim2_default>;
pinctrl-names = "default";
cs-gpios = <&gpio0 3 GPIO_ACTIVE_LOW>;
lora: lora@0 {
compatible = "semtech,sx1262";
reg = <0>;
spi-max-frequency = <4000000>;
reset-gpios = <&gpio0 2 GPIO_ACTIVE_LOW>;
busy-gpios = <&gpio0 1 GPIO_ACTIVE_HIGH>;
dio1-gpios = <&gpio0 0 GPIO_ACTIVE_HIGH>;
dio2-tx-enable;
/* RF switch (optional): high = TX */
tx-enable-gpios = <&gpio0 4 GPIO_ACTIVE_HIGH>;
/* If the module requires TCXO configuration, add dio3-tcxo-voltage */
};
};
&gpio0 {
status = "okay";
};
&gpio1 {
status = "okay";
};

View File

@@ -2,6 +2,5 @@ board:
name: sensecap_t1000e
full_name: "SenseCAP T1000-E"
vendor: sensecap
url: https://www.seeedstudio.com/SenseCAP-Card-Tracker-T1000-E-p-5913.html
socs:
- name: nrf52840

BIN
build/.ninja_deps Normal file

Binary file not shown.

872
build/.ninja_log Normal file
View File

@@ -0,0 +1,872 @@
# ninja log v7
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_acpi 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_app_memory 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_audio 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_canbus 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_cleanup 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_console 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_cpu_freq 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_crypto 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dap 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_data 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_debug 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_devicetree 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dfu 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_display 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dsp 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_fs 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_gnss 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_input 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_instrumentation 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_internal 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_ipc 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_kernel 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_kvss 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_linker 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_llext 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_logging 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_lorawan 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_math 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_misc 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_modbus 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_modem 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_net 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_platform 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_pm 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_pmci 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_portability 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_posix 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_psa 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_random 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_retention 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_rtio 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_sd 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_sensing 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_settings 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_shell 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_stats 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_storage 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_sys 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_timing 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_toolchain 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_tracing 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_usb 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_usb_c 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_video 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_xen 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_zbus 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_zvfs 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_common 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_openrisc 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_rx 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_biometrics 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_charger 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dac 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_debug 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_disk 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_display 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_edac 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_memc 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_psi5 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_reset 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sent 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_video 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtio 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_qemu_fwcfg 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_tisci 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi_nxp 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy_intel 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_flexram 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_max2221x 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_rtxxx_dsp_ctrl 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_dtc 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_external_interrupt 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn_renesas_elc 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_comparator 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_qspi 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sent 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_wuc 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_xspi 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma_silabs 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas_ra-elc 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_gnss_rtk 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_ipc_backends 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_modem_at 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_modem_ubx 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_net_http 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_pmci_mctp 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_posix_net 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_toolchain_iar 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_usb_class 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_xen_public 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io 74da82add154846f
34 50 1774526360473492436 zephyr/misc/generated/syscalls_links/include_zephyr_zbus_proxy_agent 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_acpi 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_app_memory 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_audio 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_canbus 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_cleanup 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_console 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_cpu_freq 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_crypto 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dap 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_data 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_debug 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_devicetree 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dfu 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_display 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dsp 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_fs 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_gnss 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_input 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_instrumentation 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_internal 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_ipc 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_kernel 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_kvss 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_linker 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_llext 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_logging 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_lorawan 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_math 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mem_mgmt 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_misc 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_modbus 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_modem 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_multi_heap 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_net 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_platform 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_pm 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_pmci 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_portability 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_psa 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_random 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_retention 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_rtio 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_sd 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_sensing 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_settings 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_shell 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_sip_svc 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_stats 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_storage 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_sys 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_task_wdt 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_timing 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_toolchain 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_tracing 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_usb 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_usb_c 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_video 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_zbus 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_zvfs 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_common 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_mips 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_openrisc 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_posix 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_rx 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_sparc 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_xtensa 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_asm-compat 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_dsp 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_mpu 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_secureshield 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arc_v2_vpx 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mmu 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_mpu 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_a_r_scripts 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_m_scripts 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm_cortex_r_scripts 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_cortex_r 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_arm64_scripts 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_common 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_riscv_riscv-privileged 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_intel64 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_arch_x86_ia32_scripts 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_audio 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_classic 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_mesh 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_bluetooth_services_nus 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_debug_coresight 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_adc 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_biometrics 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_bluetooth 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_can 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_charger 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_clock_control 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_comparator 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_console 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dac 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_debug 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_disk 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_display 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_dma 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_edac 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_eeprom 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ethernet 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_flash 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gnss 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_gpio 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_haptics 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i3c 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_ieee802154 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_interrupt_controller 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_led_strip 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_memc 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mfd 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mipi_dsi 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mm 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_modem 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mspi 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pinctrl 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pm_cpu_ops 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_power 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_psi5 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pwm 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_regulator 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_reset 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_retained_mem 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_rtc 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sensor 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sent 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_serial 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_sip_svc 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_spi 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_stepper 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_timer 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_uart 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_usb_c 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_video 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtio 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_virtualization 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_qemu_fwcfg 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_tisci 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_firmware_scmi_nxp 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_i2c_target 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_mic_privacy_intel 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_devmux 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_flexram 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_ft8xx 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_grove_lcd 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_max2221x 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_flexio 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_nxp_rtxxx_dsp_ctrl 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_pio_rpi_pico 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_ra_external_interrupt 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_dtc 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_renesas_rx_external_interrupt 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_stm32_wkup_pins 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_timeaware_gpio 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_misc_interconn_renesas_elc 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_pcie_endpoint 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_bus 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_drivers_wifi_nrf_wifi_off_raw_tx 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_acpi 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_adc 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_battery 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_comparator 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dac 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dai 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_display 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_espi 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ethernet 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_flash_controller 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_gpio 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_i2c 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_input 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_inputmux 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_interrupt-controller 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_ipc_service 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_led 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lora 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_lvgl 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-attr 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_memory-controller 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mfd 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dbi 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_mipi_dsi 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pcie 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_power 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pwm 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_qspi 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_rdc 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_regulator 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reserved-memory 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_reset 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sensor 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_sent 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_spi 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_timer 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_usb-c 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_video 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_wuc 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_xspi 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_clock_silabs 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_dma_silabs 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_misc_renesas_ra-elc 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_renesas 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_dt-bindings_pinctrl_silabs 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_gnss_rtk 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_ipc_backends 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_kernel_internal 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_kernel_mm 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_linker_common-rom 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_ec_host_cmd 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_hawkbit 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_mgmt 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_smp 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_transport 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_enum_mgmt 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_fs_mgmt 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_img_mgmt 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_os_mgmt 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_settings_mgmt 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_shell_mgmt 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_stat_mgmt 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_mgmt_mcumgr_grp_zephyr 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_modem_at 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_modem_backend 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_modem_ubx 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_net_conn_mgr 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_net_hdlc_rcp_if 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_net_http 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_net_prometheus 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_pmci_mctp 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix_arpa 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix_net 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix_netinet 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_posix_sys 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_sys_internal 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_toolchain_iar 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_usb_class 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen_dom0 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_hvm 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_xen_public_io 74da82add154846f
34 50 1774526360473492436 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_links/include_zephyr_zbus_proxy_agent 74da82add154846f
35 61 1774526360498357313 zephyr/include/generated/zephyr/core-isa-dM.h a144538c44ec6027
35 61 1774526360498357313 /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/core-isa-dM.h a144538c44ec6027
61 114 1774526360548144818 zephyr/include/generated/xtensa_vectors.ld cd23e93fa94bb4dd
61 114 1774526360548144818 /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/xtensa_vectors.ld cd23e93fa94bb4dd
61 136 1774526360568377936 zephyr/include/generated/zephyr/zsr.h 82d0cca58ba5b04e
61 136 1774526360568377936 /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/zsr.h 82d0cca58ba5b04e
54 139 1774526360569993000 zephyr/misc/generated/syscalls_subdirs.trigger 36ca68bef01b18d7
54 139 1774526360569993000 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls_subdirs.trigger 36ca68bef01b18d7
35 203 1774526360641036898 zephyr/include/generated/zephyr/version.h 6ad6c7f90468257c
35 203 1774526360641036898 /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/version.h 6ad6c7f90468257c
139 1188 1774526361620529912 zephyr/misc/generated/syscalls.json 5cfba12625122ea5
139 1188 1774526361620529912 zephyr/misc/generated/struct_tags.json 5cfba12625122ea5
139 1188 1774526361620529912 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/syscalls.json 5cfba12625122ea5
139 1188 1774526361620529912 /Volumes/External/Work/radio/loramodem/build/zephyr/misc/generated/struct_tags.json 5cfba12625122ea5
1189 1272 1774526361702542515 zephyr/include/generated/device-api-sections.ld 583e8bfef2fa75f6
1189 1272 1774526361702542515 zephyr/include/generated/device-api-sections.cmake 583e8bfef2fa75f6
1189 1272 1774526361702542515 /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/device-api-sections.ld 583e8bfef2fa75f6
1189 1272 1774526361702542515 /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/device-api-sections.cmake 583e8bfef2fa75f6
1188 1317 1774526361722109216 zephyr/include/generated/zephyr/syscall_dispatch.c 6ee1a7e705063ef1
1188 1317 1774526361722109216 zephyr/include/generated/zephyr/syscall_exports_llext.c 6ee1a7e705063ef1
1188 1317 1774526361722109216 zephyr/syscall_weakdefs_llext.c 6ee1a7e705063ef1
1188 1317 1774526361722109216 zephyr/include/generated/zephyr/syscall_list.h 6ee1a7e705063ef1
1188 1317 1774526361722109216 /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/syscall_dispatch.c 6ee1a7e705063ef1
1188 1317 1774526361722109216 /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/syscall_exports_llext.c 6ee1a7e705063ef1
1188 1317 1774526361722109216 /Volumes/External/Work/radio/loramodem/build/zephyr/syscall_weakdefs_llext.c 6ee1a7e705063ef1
1188 1317 1774526361722109216 /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/syscall_list.h 6ee1a7e705063ef1
1188 1358 1774526361777510438 zephyr/include/generated/zephyr/driver-validation.h 17dc4d5bdfdc089d
1188 1358 1774526361777510438 /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/driver-validation.h 17dc4d5bdfdc089d
1189 1360 1774526361777788897 zephyr/include/generated/zephyr/kobj-types-enum.h 677aec20979224ad
1189 1360 1774526361777788897 zephyr/include/generated/zephyr/otype-to-str.h 677aec20979224ad
1189 1360 1774526361777788897 zephyr/include/generated/zephyr/otype-to-size.h 677aec20979224ad
1189 1360 1774526361777788897 /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/kobj-types-enum.h 677aec20979224ad
1189 1360 1774526361777788897 /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/otype-to-str.h 677aec20979224ad
1189 1360 1774526361777788897 /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/otype-to-size.h 677aec20979224ad
1360 1458 1774526361799577811 zephyr/lib/heap/CMakeFiles/heap_constants.dir/heap_constants.c.obj 4fb85c17bd64dedc
1458 1579 1774526362002890918 zephyr/include/generated/zephyr/heap_constants.h 10e41895669dbb0d
1458 1579 1774526362002890918 /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/heap_constants.h 10e41895669dbb0d
1579 1714 1774526362018719821 zephyr/CMakeFiles/offsets.dir/arch/xtensa/core/offsets/offsets.c.obj 85a0e81bd4dca454
1714 1845 1774526362263915294 zephyr/include/generated/zephyr/offsets.h 9775a984d50a4374
1714 1845 1774526362263915294 /Volumes/External/Work/radio/loramodem/build/zephyr/include/generated/zephyr/offsets.h 9775a984d50a4374
1846 1975 1774526362285352957 CMakeFiles/app.dir/src/kiss.c.obj 4db589a826fa3183
1845 2037 1774526362284675164 zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj 1873d9d7d92584b6
1850 2097 1774526362289336964 zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj b10d40c11726dd6c
1848 2120 1774526362288128462 zephyr/CMakeFiles/zephyr.dir/lib/os/clock.c.obj 5bab9d09534cf55f
1846 2124 1774526362286096333 zephyr/CMakeFiles/zephyr.dir/lib/libc/validate_libc.c.obj 4a36ef40c0accf6e
1851 2129 1774526362291083842 zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj 3f7193491b888995
1975 2190 1774526362414673851 zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj e9276261285cc8ab
2037 2191 1774526362477018002 zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj 6bcddaf5c4eb924d
2124 2210 1774526362563577821 zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj 95525f9d6d2a3f86
2130 2212 1774526362569289915 zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj 80b9f5b88b094af9
1848 2237 1774526362287235043 zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj 414894c5215f4229
2191 2251 1774526362631149815 zephyr/CMakeFiles/zephyr.dir/lib/utils/set.c.obj 8655eabef577541d
2120 2252 1774526362560164440 zephyr/CMakeFiles/zephyr.dir/lib/os/mpsc_pbuf.c.obj e4e2145bd3bf2660
2098 2285 1774526362537198483 zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj 23a7b740999e7a8b
2237 2323 1774526362676772145 zephyr/CMakeFiles/zephyr.dir/lib/utils/bitmask.c.obj 47bff9f8be4fc448
2211 2345 1774526362651261434 zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj 2ce6e5ea93c9adc0
2190 2357 1774526362629601229 zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj 73d96993d39e51ca
2285 2368 1774526362725025688 zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj f218f0964e7e532
2212 2372 1774526362651851102 zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj 1a4c19c800357728
2326 2429 1774526362766000177 zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj 43347b64276af62f
1847 2503 1774526362286339208 zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj 93ad170a59d106f2
2251 2506 1774526362690343211 zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt.c.obj 84579d3a3c773d02
2252 2507 1774526362691191712 zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt_common.c.obj 77162b3f9a4e84e5
2357 2518 1774526362796337522 zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/esp32s3-mp.c.obj 6bd6408380e5da71
2346 2523 1774526362785373753 zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/soc.c.obj 37b8097587472526
2372 2545 1774526362811783924 zephyr/CMakeFiles/zephyr.dir/soc/espressif/esp32s3/hw_init.c.obj 9ed8f36314c001a1
2369 2691 1774526362808680877 zephyr/CMakeFiles/zephyr.dir/soc/espressif/common/loader.c.obj b25bc85a92596397
2429 2692 1774526362941112735 zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_core.c.obj 23d0f8d946bf39e3
2504 2692 1774526362943290573 zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_mgmt.c.obj 206f8117d29fff
2506 2694 1774526362945306534 zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_cache.c.obj 783333f97e3f02ad
2507 2695 1774526362946861912 zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_msg.c.obj a44e16d835a10432
2518 2710 1774526362958073307 zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_output.c.obj e21460a973326610
2523 2710 1774526362963111149 zephyr/CMakeFiles/zephyr.dir/subsys/logging/backends/log_backend_uart.c.obj 55d2a91aca4a04df
1845 2712 1774526362285062998 CMakeFiles/app.dir/src/main.c.obj 59e1aff0cc39027b
2694 2814 1774526363133406490 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_table.c.obj d6a18b97d1e30f4c
2693 2832 1774526363132174697 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_utility.c.obj 446b345d6b4ebc27
2692 2860 1774526363131753737 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_fields.c.obj fd000eca0723bbea
2710 2876 1774526363149214435 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_utility.c.obj b000c807f4683ddd
2713 2886 1774526363152161357 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/flash_encrypt.c.obj 12864c46414b51ba
2707 2910 1774526363146677430 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/esp32s3/esp_efuse_fields.c.obj 583d9693041db6f8
2690 2912 1774526363129541150 zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj 435c0259a1fd10af
2691 2948 1774526363130866194 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/esp_efuse_api.c.obj 588732212a48a235
2710 2948 1774526363149579352 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj cb562d08f37723d6
2814 2950 1774526363253921827 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_gpio_reserve.c.obj 2a75cf19c8c44257
2832 2951 1774526363271446400 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_encrypt_hal_iram.c.obj e3a1ba182f523c59
2860 2991 1774526363300051367 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal.c.obj cac952634670c011
2886 2995 1774526363325572203 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_gpspi.c.obj 7f4cbc1b708aca1c
2876 3031 1774526363315327560 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_mspi/spi_flash_hal_iram.c.obj 7e0748e674b09f2e
2910 3086 1774526363350007955 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp32s3/spi_flash_oct_flash_init.c.obj 3ce61201685f28d8
2991 3093 1774526363430661597 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_boya.c.obj 6d1a2d22028dfb2f
2985 3102 1774526363424693669 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/memspi_host_driver.c.obj 32560eacc56e67a
2995 3122 1774526363434464437 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_drivers.c.obj 8789553b25662ce0
2948 3128 1774526363388122897 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_mmap.c.obj dbe0cd19c5bd4e69
3031 3145 1774526363471039584 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_gd.c.obj 85887d7edd00a9
3093 3190 1774526363532867776 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_issi.c.obj 14a298d62ab20415
2947 3238 1774526363386931145 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_api.c.obj 5a97715a65d6e23
2948 3240 1774526363387754354 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/esp_flash_spi_init.c.obj 40a6b41760126478
2950 3240 1774526363389789816 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/flash_ops.c.obj 13ba31bef4fddbda
3086 3242 1774526363525692805 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_generic.c.obj 20d2b9d6a0b59312
3102 3277 1774526363541520750 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic.c.obj e4747751df110450
3129 3277 1774526363568280589 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_th.c.obj 18210aa84c9ceb1c
1846 3278 1774526362285590040 CMakeFiles/app.dir/src/lora_modem.c.obj 347ab5a1be33274d
3122 3278 1774526363561849369 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_mxic_opi.c.obj 219e1a9fdd953d66
3145 3357 1774526363585027035 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_chip_winbond.c.obj 49548c457a35d34e
3237 3358 1774526363676721363 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_hpm_enable.c.obj c5148bbf2425b6d7
3240 3360 1774526363679775243 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_wrap.c.obj 6487206a4fe38dba
3238 3373 1774526363677509281 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_noos.c.obj a24e63a9431ce06
3278 3393 1774526363717492060 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal.c.obj d0dab7c2de6e390c
3277 3404 1774526363716626100 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal.c.obj 50bcb0926d486924
3277 3412 1774526363717113059 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_uart/uart_hal_iram.c.obj 58e34619ded85fd1
3357 3418 1774526363796217365 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/lldesc.c.obj 8deb33036c836bee
3358 3427 1774526363798105868 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_top.c.obj 108972034434dbe
3240 3442 1774526363679318867 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/spi_flash_os_func_app.c.obj d44920bd8f30fe9d
3393 3479 1774526363832450220 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_security/mpu_hal.c.obj ee95ac1df864c9c3
3278 3516 1774526363795506780 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpspi/spi_hal_iram.c.obj e8b8b7eb491fed37
3360 3517 1774526363799858996 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_dma/gdma_hal_ahb_v1.c.obj 13d2028d3ef847ba
3373 3518 1774526363832047178 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/src/bootloader_clock_init.c.obj 9d1f4e362691d71d
3404 3520 1774526363843947657 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c.obj c95f06a862fc15b
3275 3613 1774526363714522012 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/spi_flash/cache_utils.c.obj 58495f5b1e6101c1
3412 3614 1774526363851204420 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32s3.c.obj 65be78da2e9772b6
3418 3614 1774526363857288264 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/console_init.c.obj b8136f9be550fff
3514 3615 1774526363954004309 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/esp32s3/temperature_sensor_periph.c.obj c8c332e94465ee29
3442 3717 1774526363882039932 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_driver_gpio/src/rtc_io.c.obj 352957fbaa85b155
3517 3719 1774526363956275271 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_ana_conv/temperature_sensor_hal.c.obj 1e1ced1e01b66ef6
3517 3719 1774526363956960939 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_clock/esp32s3/clk_tree_hal.c.obj fcb0d5e095d3ec70
3518 3719 1774526363957295148 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/esp32s3/rtc_io_periph.c.obj 22fc8acaf322de06
3612 3734 1774526364052025856 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_gpio/rtc_io_hal.c.obj 1136da62e8deffbc
3614 3735 1774526364053182358 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_systimer/systimer_hal.c.obj ed499c3400ec43ef
3614 3737 1774526364054122860 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/xt_wdt_hal.c.obj b792890aa63bfbf5
3614 3739 1774526364053714484 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hal_wdt/wdt_hal_iram.c.obj 41c80ff25e005f96
3427 3767 1774526363866382030 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/soc_init.c.obj 4a53d16748936c36
3734 3830 1774526364174026404 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mac_addr.c.obj f6ed68493619b85c
3767 3868 1774526364207045421 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/cpu_region_protect.c.obj 1fd83b188eaad3b6
3735 3887 1774526364174462405 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mspi/mspi_timing_tuning/mspi_timing_tuning.c.obj cc4075a91e18647d
3719 3922 1774526364158354085 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/cpu.c.obj c7baa5e5dba4012b
3719 3928 1774526364158724461 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/esp_clk.c.obj 6d1928c458e139b8
3737 3940 1774526364176834118 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/mspi/mspi_timing_tuning/port/esp32s3/mspi_timing_config.c.obj a7e2101ddb15385c
3716 3954 1774526364155865331 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/adc_share_hw_ctrl.c.obj 42fffe99be74575f
3830 3966 1774526364269997990 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_clk_tree.c.obj 611fe81cc8c8772e
3719 3970 1774526364173498695 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/hw_random.c.obj c806cc1849d5c50e
3717 3982 1774526364156702999 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/clk_ctrl_os.c.obj 86cb0d93c761b1e1
3869 4036 1774526364308186682 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/esp_cpu_intr.c.obj 8655ad64f66a1b9e
3739 4070 1774526364206133877 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/periph_ctrl.c.obj 43a807c53c9c3d71
3983 4074 1774526364422161591 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/systimer.c.obj e192830e21261dae
3887 4124 1774526364334383770 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/io_mux.c.obj 28ccfea2bbff657f
3940 4142 1774526364379844475 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_init.c.obj 82e54d491d4670f7
3923 4155 1774526364362216652 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk.c.obj 97a8207c5f356518
3966 4170 1774526364406148188 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_time.c.obj ef0ec118e12f57c0
3954 4197 1774526364394164167 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_sleep.c.obj 67f486878c820893
3929 4219 1774526364368251121 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/rtc_clk_init.c.obj 36ada2dadc6a7e36
4036 4219 1774526364475509893 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp_clk_tree_common.c.obj 3d7df545bdda96f0
4074 4251 1774526364513388793 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/rtc_module.c.obj ae4d80022676d018
4070 4259 1774526364510020245 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/regi2c_ctrl.c.obj d1c7339daf044e0e
3970 4284 1774526364409462318 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/port/esp32s3/sar_periph_ctrl.c.obj 43dd1e0636084bd4
4260 4315 1774526364699304078 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_crc.c.obj f0b8db772d26f0bc
4219 4316 1774526364658380298 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/port/esp32s3/ext_mem_layout.c.obj 9d48fb557e563ccb
4219 4334 1774526364658780507 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_esp32s2_esp32s3.c.obj aadcf4acc3173d73
4251 4342 1774526364690646021 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_cache_writeback_esp32s3.S.obj 988e119bd640f94d
4284 4373 1774526364724119455 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_efuse.c.obj 81faa3ed2798dbf0
4316 4376 1774526364755696136 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_longjmp.S.obj 4a34dfc68f8005e
4315 4403 1774526364754570384 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_gpio.c.obj fa2c7c24b21f5919
4124 4411 1774526364563571631 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sar_tsens_ctrl.c.obj 3f8217e7333de87f
4155 4421 1774526364594958603 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_msync.c.obj a8be63d6052583b7
4171 4473 1774526364610172088 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_cache_utils.c.obj 34f574e35b1797dc
4217 4474 1774526364657092087 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_mm/esp_mmu_map.c.obj c31c2abcca7a631d
4334 4474 1774526364773765168 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_print.c.obj 221772042f07e5a3
4373 4474 1774526364812377277 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_spiflash.c.obj 9f1fa6d085cccf37
4342 4480 1774526364781778390 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_serial_output.c.obj 4a422be4a4c493c0
4376 4480 1774526364815429741 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_rom/patches/esp_rom_sys.c.obj cca6a874fe1845ab
4142 4522 1774526364581634121 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_hw_support/sleep_modes.c.obj 542cba8388f6ad9
4480 4615 1774526364919796800 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/ets_timer_legacy.c.obj 6f49f4b7f40bd5df
4403 4624 1774526364842864706 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/esp_err.c.obj f0ed7fa732d9a3ed
4411 4625 1774526364851053345 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/clk.c.obj 6e0960f4039ce16b
4480 4626 1774526364919483049 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_init.c.obj 3f9c0463bc6de2c3
4474 4637 1774526364913777247 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_common.c.obj 14145a5814ae5cba
4473 4687 1774526364912469245 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/reset_reason.c.obj 6e48c44384b0783b
4473 4688 1774526364913094288 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_system/port/soc/esp32s3/system_internal.c.obj 31a095e9799491ae
4474 4693 1774526364913476955 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer.c.obj ee90ce642a7a5d6d
4522 4693 1774526364961536748 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/esp32s3/efuse_hal.c.obj a20a76f808b4b14d
4479 4738 1774526364918746006 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/esp_timer/src/esp_timer_impl_systimer.c.obj b1ff9d8e59dbc801
4615 4738 1774526365054571620 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/cache_hal.c.obj e99b23592798c803
4624 4739 1774526365063426177 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/efuse_hal.c.obj 9b22fd09ef8c3fa1
4625 4739 1774526365064542138 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/hal/mmu_hal.c.obj 21ed1fdb2e335d42
4626 4770 1774526365065788973 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/components/soc/esp32s3/gpio_periph.c.obj 48a722bf04a2a9ff
4739 4882 1774526365302896848 zephyr/linker_zephyr_pre0.cmd 58a92862fb22e2b7
4739 4882 1774526365302896848 /Volumes/External/Work/radio/loramodem/build/zephyr/linker_zephyr_pre0.cmd 58a92862fb22e2b7
4688 4883 1774526365127620207 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/bootloader/bootloader_flash.c.obj 3144aaaed38d6b13
4688 4889 1774526365127185331 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/flash_init.c.obj 1f1873a165cd45a4
4738 4908 1774526365177680295 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_random.c.obj ac4d8831d41dcef4
4738 4935 1774526365177304586 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_init.c.obj 8f39da0f13274a28
4685 4972 1774526365124985244 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/common/esp_restart.c.obj 1cb0a741375d846f
4739 4974 1774526365206013053 zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj 8c225a43aaa0b0f5
4770 4975 1774526365209966143 zephyr/arch/common/CMakeFiles/arch__common.dir/dynamic_isr.c.obj 7e0ab4bc10e5083e
4883 4975 1774526365322613966 zephyr/arch/common/libisr_tables.a 141f04a95f9564a6
4736 4976 1774526365176042375 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3/src/soc_flash_init.c.obj f5bb925a1c733a65
4882 4985 1774526365321673506 zephyr/arch/common/CMakeFiles/arch__common.dir/init.c.obj a72d51abc85b58d2
4693 4990 1774526365132536215 zephyr/CMakeFiles/zephyr.dir/Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/port/heap/heap_caps_zephyr.c.obj 6a3dedb4bf9c0817
4973 5050 1774526365412227957 zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/xtensa_asm2_util.S.obj 557ea65229861b1e
4889 5059 1774526365328903269 zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/cpu_idle.c.obj 3d6bcfda953c77e6
4935 5062 1774526365410292912 zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/window_vectors.S.obj cf2c2b21838bb07d
4908 5173 1774526365347834178 zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/fatal.c.obj 369769550a6de314
4991 5212 1774526365430200072 zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj 9a809ed5b960bd08
4976 5223 1774526365423233977 zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/prep_c.c.obj be228da303dc139c
5059 5224 1774526365499062319 zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj a8b426ee341f485c
4985 5227 1774526365424673396 zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj b46f32ef2e65a51b
4975 5230 1774526365414602378 zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/thread.c.obj 5586f2b949b8b7e6
5062 5248 1774526365501298448 zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj d69aa1aecaa1e3a6
4974 5249 1774526365413357334 zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/irq_manage.c.obj 595e0c9713f5476b
5230 5287 1774526365669467118 zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/fnmatch.c.obj 98ff94e11ab97a2d
5050 5291 1774526365489638844 zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj f0ddcfc8e9a8dd02
5224 5329 1774526365663679191 zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/time/time.c.obj dc2ebde82ba8194c
5173 5379 1774526365612867852 zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj 62a29f2947824d1a
5223 5388 1774526365663089190 zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj 628bb25377ff1b4c
5249 5398 1774526365688746069 zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getopt_shim.c.obj d0d08d0386e768cc
5212 5438 1774526365651767337 zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj f055b46e1be0c840
5248 5442 1774526365687977693 zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir/getentropy.c.obj 8f02e240d2035d13
5227 5468 1774526365666550530 zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj b06e33198383622d
5329 5529 1774526365814627374 zephyr/drivers/console/CMakeFiles/drivers__console.dir/uart_console.c.obj c43ebfd335583347
5468 5538 1774526365907573829 zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/boards/mcu/utilities.c.obj bdd9df5c84d32e1b
5529 5594 1774526365968888853 zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/systime.c.obj 3f1122ed2fb6f90d
5538 5604 1774526365978032536 zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/timer.c.obj fae4034b902b3200
5398 5607 1774526365837820040 zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/hal_common.c.obj ee1bcdf547a5a628
5287 5625 1774526365726767719 zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_esp32.c.obj 8c8068c4d86d4bd4
5442 5630 1774526365881873909 zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx126x_standalone.c.obj 71beefa3a05b1eff
5594 5645 1774526366034130468 zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/system/delay.c.obj d8170301eaddb4f2
5607 5671 1774526366046614532 zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/radio.c.obj c51fd24728a827e3
5604 5697 1774526366043839610 zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/Users/wijnand/zephyrproject/modules/lib/loramac-node/src/radio/sx126x/sx126x.c.obj a366fd8b4ab8c68a
5625 5735 1774526366064832605 zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/common.c.obj 22a9e1f23a2bdfaf
5631 5805 1774526366070368240 zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir/pinctrl_esp32.c.obj 80e3eec6040be519
5291 5826 1774526365730325392 zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_control_esp32.c.obj ce4a1ded88a5be33
5645 5847 1774526366084626015 zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/serial_esp32_usb.c.obj b1f7ace1181b3e2f
5379 5886 1774526365818252130 zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir/gpio_esp32.c.obj 90429d50f4c26b9a
5438 5892 1774526365877435568 zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx12xx_common.c.obj 9d6cc3d0b4eb5c49
5735 5913 1774526366174351590 zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj db766e40caa074cc
5805 5943 1774526366244522505 zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/xtensa_sys_timer.c.obj 3452065a8836a104
5826 5981 1774526366265835542 zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj 7460a1ce69d119b
5886 6034 1774526366325368897 zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj 68251e78d421033f
5892 6041 1774526366331284157 zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj 4a7267c545e718cf
5847 6042 1774526366287097913 zephyr/kernel/CMakeFiles/kernel.dir/banner.c.obj e5a50a88d9e83c12
5913 6072 1774526366352824029 zephyr/kernel/CMakeFiles/kernel.dir/errno.c.obj 28f405c5f9f85ceb
5697 6100 1774526366136363565 zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/uart_esp32.c.obj a2dd505bdb7404d
6072 6131 1774526366511522724 zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj a200e07ec550a2c9
6034 6205 1774526366473637283 zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj ba56453fd48ef53c
6041 6207 1774526366480518003 zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj d19a731cf0e28c0
5981 6209 1774526366420959274 zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj 8390191c04f9a262
6042 6250 1774526366481937964 zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj 8806f4c0ee32c855
6100 6273 1774526366539701357 zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj 2ebb39d74384ab88
5943 6314 1774526366383155374 zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj 2706eb86c1e7da9d
6131 6323 1774526366571124246 zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj 4a013c970f89c55e
6205 6387 1774526366644906626 zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj 784a5bd6e52a0e1e
6209 6396 1774526366648706508 zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj 7f6857834bb29466
6273 6436 1774526366712937954 zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj 15f160e4ae74be56
6250 6447 1774526366689724913 zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj 25d2b6d2dcc73668
6314 6455 1774526366753931109 zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj 10f5e157452474eb
6323 6466 1774526366762717208 zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj 3aec845be3ed35d2
4975 6518 1774526365414842087 zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir/vector_handlers.c.obj fb783e86ec380687
6447 6597 1774526366886633635 zephyr/kernel/CMakeFiles/kernel.dir/pipe.c.obj 1316f7accb476480
6466 6601 1774526366905325251 zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj c026bdf85f27eb63
6387 6603 1774526366826620029 zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj 4a2e848e8de99c68
6455 6617 1774526366895014733 zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj c05fed440332d35f
6518 6675 1774526366958069219 zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj 765c911f180e0453
6617 6704 1774526367057011767 app/libapp.a d0e378a82ff93db7
6601 6739 1774526367040626072 zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj 383a78e21e7a7578
6597 6749 1774526367037065357 zephyr/kernel/CMakeFiles/kernel.dir/poll.c.obj e2a28be1c6009bb9
6396 6752 1774526366835491878 zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj 54e23394f60ddd73
6704 6756 1774526367143803504 zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj aa6399ae1387f82a
6603 6773 1774526367042196241 zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj 4425ff5bd087ec00
6739 6814 1774526367178347523 zephyr/arch/common/libarch__common.a abf971525a5c1c44
6756 6830 1774526367195322969 zephyr/lib/libc/common/liblib__libc__common.a 1e952db762a43a3
6749 6836 1774526367188849041 zephyr/arch/arch/xtensa/core/libarch__xtensa__core.a 98046ec515881509
6752 6841 1774526367191866796 zephyr/lib/libc/picolibc/liblib__libc__picolibc.a c997fba3e8e6bd08
6436 6843 1774526366875272240 zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj d4f2c3483a6eb61
6773 6847 1774526367212397124 zephyr/lib/posix/c_lib_ext/liblib__posix__c_lib_ext.a 66b8a76668d55e3f
6814 6909 1774526367253732114 zephyr/drivers/interrupt_controller/libdrivers__interrupt_controller.a 7455cbe57006f5c6
6830 6910 1774526367269537183 zephyr/drivers/clock_control/libdrivers__clock_control.a 1d4ca86d63380a6c
6836 6911 1774526367275693194 zephyr/drivers/console/libdrivers__console.a d3fd7190a68c837
6841 6917 1774526367280862120 zephyr/drivers/gpio/libdrivers__gpio.a d03e601a76e4a0e6
6844 6921 1774526367283163749 zephyr/drivers/pinctrl/libdrivers__pinctrl.a bdd6ef3d47ba8930
5388 6960 1774526365827407688 zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir/sx126x.c.obj 61f48b05f9cedd4
6909 6982 1774526367348320822 zephyr/drivers/timer/libdrivers__timer.a 56306f9d96f4e134
6847 6982 1774526367346980361 zephyr/drivers/serial/libdrivers__serial.a 4da4e769a748bce6
5697 7045 1774526366137052691 zephyr/drivers/spi/CMakeFiles/drivers__spi.dir/spi_esp32_spim.c.obj 1601b9af6ff135ec
6207 7047 1774526366646466670 zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj b8bb5bfbfd86eeea
6960 7055 1774526367399857287 zephyr/drivers/lora/loramac-node/libloramac-node.a 3b42883637d5532c
6675 7111 1774526367114366785 zephyr/libzephyr.a 91cd0e45fe5d54a7
7045 7112 1774526367484579145 zephyr/drivers/spi/libdrivers__spi.a 48c9927ec2a253e6
7047 7155 1774526367486622607 zephyr/kernel/libkernel.a ab9ed41fbe92c1f8
7155 7354 1774526367783529837 zephyr/zephyr_pre0.elf 1439f2560f138293
7155 7354 1774526367783529837 zephyr/zephyr_pre0.map 1439f2560f138293
7155 7354 1774526367783529837 /Volumes/External/Work/radio/loramodem/build/zephyr/zephyr_pre0.map 1439f2560f138293
7354 7412 1774526367841204647 zephyr/linker.cmd b97e156f2abeed14
7354 7412 1774526367841204647 /Volumes/External/Work/radio/loramodem/build/zephyr/linker.cmd b97e156f2abeed14
7412 7596 1774526368015276453 zephyr/isr_tables.c 748b06ff73f152f8
7412 7596 1774526368015276453 zephyr/isr_tables_vt.ld 748b06ff73f152f8
7412 7596 1774526368015276453 zephyr/isr_tables_swi.ld 748b06ff73f152f8
7412 7596 1774526368015276453 /Volumes/External/Work/radio/loramodem/build/zephyr/isr_tables.c 748b06ff73f152f8
7412 7596 1774526368015276453 /Volumes/External/Work/radio/loramodem/build/zephyr/isr_tables_vt.ld 748b06ff73f152f8
7412 7596 1774526368015276453 /Volumes/External/Work/radio/loramodem/build/zephyr/isr_tables_swi.ld 748b06ff73f152f8
7596 7620 1774526368035864614 zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj 357001895e4d8a0f
7597 7697 1774526368036311699 zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj ab4dd64bb7e8f917
7697 8338 1774526368764310021 zephyr/zephyr.elf b8e19245d7e0d39b
7697 8338 1774526368764310021 zephyr/zephyr.map b8e19245d7e0d39b
7697 8338 1774526368764310021 zephyr/zephyr.bin b8e19245d7e0d39b
7697 8338 1774526368764310021 zephyr/zephyr.stat b8e19245d7e0d39b
7697 8338 1774526368764310021 /Volumes/External/Work/radio/loramodem/build/zephyr/zephyr.map b8e19245d7e0d39b
7697 8338 1774526368764310021 /Volumes/External/Work/radio/loramodem/build/zephyr/zephyr.bin b8e19245d7e0d39b
7697 8338 1774526368764310021 /Volumes/External/Work/radio/loramodem/build/zephyr/zephyr.stat b8e19245d7e0d39b

628
build/CMakeCache.txt Normal file
View File

@@ -0,0 +1,628 @@
# This is the CMakeCache file.
# For build in directory: /Volumes/External/Work/radio/loramodem/build
# It was generated by CMake: /opt/homebrew/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=/Volumes/External/Work/radio/loramodem/build
//The application configuration folder
APPLICATION_CONFIG_DIR:PATH=/Volumes/External/Work/radio/loramodem/app
//Application Source Directory
APPLICATION_SOURCE_DIR:PATH=/Volumes/External/Work/radio/loramodem/app
//Selected board
BOARD:STRING=xiao_esp32s3/esp32s3/procpu
//Main board directory for board (xiao_esp32s3)
BOARD_DIR:PATH=/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3
//Path to a program.
BOSSAC:FILEPATH=BOSSAC-NOTFOUND
//Kernel binary file
BYPRODUCT_KERNEL_BIN_NAME:FILEPATH=/Volumes/External/Work/radio/loramodem/build/zephyr/zephyr.bin
//Kernel elf file
BYPRODUCT_KERNEL_ELF_NAME:FILEPATH=/Volumes/External/Work/radio/loramodem/build/zephyr/zephyr.elf
//Selected board
CACHED_BOARD:STRING=xiao_esp32s3/esp32s3/procpu
//Selected shield
CACHED_SHIELD:STRING=
//Selected snippet
CACHED_SNIPPET:STRING=
//Path to a program.
CCACHE_FOUND:FILEPATH=/opt/homebrew/bin/ccache
//Path to a program.
CCACHE_PROGRAM:FILEPATH=/opt/homebrew/bin/ccache
//Path to a program.
CMAKE_ADDR2LINE:FILEPATH=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-addr2line
//Path to a program.
CMAKE_AR:FILEPATH=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar
//Path to a program.
CMAKE_AS:FILEPATH=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-as
//ASM compiler
CMAKE_ASM_COMPILER:FILEPATH=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_AR:FILEPATH=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_RANLIB:FILEPATH=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-g++
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_AR:FILEPATH=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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
//C compiler
CMAKE_C_COMPILER:STRING=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_AR:FILEPATH=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_RANLIB:FILEPATH=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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=
//Enable/Disable output of build database during the build.
CMAKE_EXPORT_BUILD_DATABASE:BOOL=
//Export CMake compile commands. Used by gen_app_partitions.py
// script
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE
//Value Computed by CMake.
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pkgRedirects
//Path to a program.
CMAKE_GCOV:FILEPATH=/Users/wijnand/zephyr-sdk-1.0.0/gnu/aarch64-zephyr-elf/bin/aarch64-zephyr-elf-gcov
//Path to a program.
CMAKE_GDB:FILEPATH=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gdb-py
//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=/opt/homebrew/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=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-nm
//Path to a program.
CMAKE_OBJCOPY:FILEPATH=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objcopy
//Path to a program.
CMAKE_OBJDUMP:FILEPATH=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump
//Value Computed by CMake
CMAKE_PROJECT_COMPAT_VERSION:STATIC=
//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=loramodem
//Value Computed by CMake
CMAKE_PROJECT_SPDX_LICENSE:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_VERSION:STATIC=4.4.0
//Value Computed by CMake
CMAKE_PROJECT_VERSION_MAJOR:STATIC=4
//Value Computed by CMake
CMAKE_PROJECT_VERSION_MINOR:STATIC=4
//Value Computed by CMake
CMAKE_PROJECT_VERSION_PATCH:STATIC=0
//Value Computed by CMake
CMAKE_PROJECT_VERSION_TWEAK:STATIC=
//Path to a program.
CMAKE_RANLIB:FILEPATH=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib
//Path to a program.
CMAKE_READELF:FILEPATH=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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 archiver during the creation of static libraries
// during all build types.
CMAKE_STATIC_LINKER_FLAGS:STRING=
//Flags used by the archiver during the creation of static libraries
// during DEBUG builds.
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the archiver during the creation of static libraries
// during MINSIZEREL builds.
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the archiver during the creation of static libraries
// during RELEASE builds.
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the archiver during the creation of static libraries
// during RELWITHDEBINFO builds.
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_STRIP:FILEPATH=/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-strip
//Path to a program.
CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND
//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
//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 applications
// .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=/Volumes/External/Work/radio/loramodem/app/prj.conf
//Path to a program.
DTC:FILEPATH=/opt/homebrew/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=/Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay
//Path to a program.
ESPTOOL_EXECUTABLE:FILEPATH=/Users/wijnand/zephyrproject/.venv/bin/esptool
//Path to a program.
GEN_KOBJECT_LIST:FILEPATH=/Users/wijnand/zephyrproject/zephyr/scripts/build/gen_kobject_list.py
//Linker BFD compatibility (compiler reported)
GNULD_LINKER_IS_BFD:BOOL=ON
//GNU ld version
GNULD_VERSION_STRING:STRING=2.43.1
//Path to a program.
GPERF:FILEPATH=/opt/homebrew/bin/gperf
//Path to a program.
IMGTOOL:FILEPATH=/Users/wijnand/zephyrproject/bootloader/mcuboot/scripts/imgtool.py
//Path to a program.
OPENOCD:FILEPATH=/Users/wijnand/zephyr-sdk-1.0.0/hosttools/usr/bin/openocd
//Path to a program.
PAHOLE:FILEPATH=PAHOLE-NOTFOUND
//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=/Volumes/External/Work/radio/loramodem/build/modules/picolibc
//Value Computed by CMake
Picolibc_IS_TOP_LEVEL:STATIC=OFF
//Value Computed by CMake
Picolibc_SOURCE_DIR:STATIC=/Users/wijnand/zephyrproject/modules/lib/picolibc
//Path to the SoC directory.
SOC_FULL_DIR:PATH=/Users/wijnand/zephyrproject/zephyr/soc/espressif
//True if toolchain supports libstdc++
TOOLCHAIN_HAS_GLIBCXX:BOOL=ON
//True if toolchain supports newlib
TOOLCHAIN_HAS_NEWLIB:BOOL=OFF
//True if toolchain supports picolibc
TOOLCHAIN_HAS_PICOLIBC:BOOL=ON
//Zephyr toolchain root
TOOLCHAIN_ROOT:STRING=/Users/wijnand/zephyrproject/zephyr
//compiler used by the toolchain variant
TOOLCHAIN_VARIANT_COMPILER:STRING=gnu
//No help, variable specified on the command line.
WEST_PYTHON:UNINITIALIZED=/Users/wijnand/zephyrproject/.venv/bin/python3.14
//Zephyr base
ZEPHYR_BASE:PATH=/Users/wijnand/zephyrproject/zephyr
//Path to Zephyr git repository index file
ZEPHYR_GIT_INDEX:PATH=/Users/wijnand/zephyrproject/zephyr/.git/index
//Zephyr SDK install directory
ZEPHYR_SDK_INSTALL_DIR:PATH=/Users/wijnand/zephyr-sdk-1.0.0
//Zephyr toolchain variant
ZEPHYR_TOOLCHAIN_VARIANT:STRING=zephyr
//Value Computed by CMake
Zephyr-Kernel_BINARY_DIR:STATIC=/Volumes/External/Work/radio/loramodem/build
//Value Computed by CMake
Zephyr-Kernel_IS_TOP_LEVEL:STATIC=ON
//Value Computed by CMake
Zephyr-Kernel_SOURCE_DIR:STATIC=/Volumes/External/Work/radio/loramodem/app
//The directory containing a CMake configuration file for Zephyr-sdk.
Zephyr-sdk_DIR:PATH=/Users/wijnand/zephyr-sdk-1.0.0/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=ZephyrBuildConfiguration_DIR-NOTFOUND
//The directory containing a CMake configuration file for Zephyr.
Zephyr_DIR:PATH=/Users/wijnand/zephyrproject/zephyr/share/zephyr-package/cmake
//Value Computed by CMake
loramodem_BINARY_DIR:STATIC=/Volumes/External/Work/radio/loramodem/build
//Value Computed by CMake
loramodem_IS_TOP_LEVEL:STATIC=ON
//Value Computed by CMake
loramodem_SOURCE_DIR:STATIC=/Volumes/External/Work/radio/loramodem/app
########################
# INTERNAL cache entries
########################
//List of board directories for board (xiao_esp32s3)
BOARD_DIRECTORIES:INTERNAL=/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3
//DT bindings root directories
CACHED_DTS_ROOT_BINDINGS:INTERNAL=/Volumes/External/Work/radio/loramodem/dts/bindings;/Users/wijnand/zephyrproject/zephyr/dts/bindings
//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=/Volumes/External/Work/radio/loramodem/build
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=4
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=3
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=0
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=/opt/homebrew/bin/cmake
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=/opt/homebrew/bin/cpack
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=/opt/homebrew/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
CMAKE_C_COMPILER-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
//Path to cache edit program executable.
CMAKE_EDIT_COMMAND:INTERNAL=/opt/homebrew/bin/ccmake
//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
//ADVANCED property for variable: CMAKE_EXPORT_BUILD_DATABASE
CMAKE_EXPORT_BUILD_DATABASE-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=/Volumes/External/Work/radio/loramodem/app
//Name of CMakeLists files to read
CMAKE_LIST_FILE_NAME:INTERNAL=CMakeLists.txt
//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=159
//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=/opt/homebrew/share/cmake
//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
//ADVANCED property for variable: CMAKE_TAPI
CMAKE_TAPI-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 Dtc
FIND_PACKAGE_MESSAGE_DETAILS_Dtc:INTERNAL=[/opt/homebrew/bin/dtc][v1.7.2(1.4.6)]
//Details about finding GnuLd
FIND_PACKAGE_MESSAGE_DETAILS_GnuLd:INTERNAL=[/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf/bin/ld.bfd][v2.43.1()]
//Details about finding Python3
FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[/Users/wijnand/zephyrproject/.venv/bin/python3.14][found components: Interpreter ][v3.14.3(3.12)]
//Zephyr hardware model version
HWM:INTERNAL=v2
//Zephyr hardware model
HWMv2:INTERNAL=True
KERNEL_META_PATH:INTERNAL=/Volumes/External/Work/radio/loramodem/build/zephyr/zephyr.meta
//List of SoC directories for SoC (esp32s3)
SOC_DIRECTORIES:INTERNAL=/Users/wijnand/zephyrproject/zephyr/soc/espressif
SOC_LINKER_SCRIPT:INTERNAL=/Users/wijnand/zephyrproject/zephyr/soc/espressif/common/../esp32s3/default.ld
//West
WEST:INTERNAL=/Users/wijnand/zephyrproject/.venv/bin/python3.14;-m;west
ZEPHYR_SHARED_TARGETS:INTERNAL=menuconfig;guiconfig;hardenconfig;traceconfig
//Compiler reason failure
_Python3_Compiler_REASON_FAILURE:INTERNAL=
//Development reason failure
_Python3_Development_REASON_FAILURE:INTERNAL=
_Python3_EXECUTABLE:INTERNAL=/Users/wijnand/zephyrproject/.venv/bin/python3.14
//Python3 Properties
_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;14;3;64;<none>;cpython-314-darwin.so;abi3;/opt/homebrew/opt/python@3.14/Frameworks/Python.framework/Versions/3.14/lib/python3.14;/Users/wijnand/zephyrproject/.venv/lib/python3.14;/Users/wijnand/zephyrproject/.venv/lib/python3.14/site-packages;/Users/wijnand/zephyrproject/.venv/lib/python3.14/site-packages
_Python3_INTERPRETER_SIGNATURE:INTERNAL=856c8ec6791d67b872a6a58aac074302
//NumPy reason failure
_Python3_NumPy_REASON_FAILURE:INTERNAL=

View File

@@ -0,0 +1,30 @@
set(CMAKE_ASM_COMPILER "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc")
set(CMAKE_ASM_COMPILER_ARG1 "")
set(CMAKE_AR "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar")
set(CMAKE_ASM_COMPILER_AR "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar")
set(CMAKE_RANLIB "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib")
set(CMAKE_ASM_COMPILER_RANLIB "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib")
set(CMAKE_LINKER "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf/bin/ld.bfd")
set(CMAKE_LINKER_LINK "")
set(CMAKE_LINKER_LLD "")
set(CMAKE_ASM_COMPILER_LINKER "")
set(CMAKE_ASM_COMPILER_LINKER_ID "")
set(CMAKE_ASM_COMPILER_LINKER_VERSION )
set(CMAKE_ASM_COMPILER_LINKER_FRONTEND_VARIANT )
set(CMAKE_MT "")
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
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_COMPILER_ARCHITECTURE_ID "")
set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
set(CMAKE_ASM_LINKER_PREFERENCE 0)
set(CMAKE_ASM_LINKER_DEPFILE_SUPPORTED )
set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED )
set(CMAKE_ASM_LINKER_PUSHPOP_STATE_SUPPORTED )

View File

@@ -0,0 +1,85 @@
set(CMAKE_C_COMPILER "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc")
set(CMAKE_C_COMPILER_ARG1 "")
set(CMAKE_C_COMPILER_ID "GNU")
set(CMAKE_C_COMPILER_VERSION "14.3.0")
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
set(CMAKE_C_COMPILER_WRAPPER "")
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17")
set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON")
set(CMAKE_C_STANDARD_LATEST "23")
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 "GNU")
set(CMAKE_C_COMPILER_APPLE_SYSROOT "")
set(CMAKE_C_SIMULATE_VERSION "")
set(CMAKE_C_COMPILER_ARCHITECTURE_ID "")
set(CMAKE_AR "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar")
set(CMAKE_C_COMPILER_AR "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar")
set(CMAKE_RANLIB "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib")
set(CMAKE_C_COMPILER_RANLIB "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib")
set(CMAKE_LINKER "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf/bin/ld.bfd")
set(CMAKE_LINKER_LINK "")
set(CMAKE_LINKER_LLD "")
set(CMAKE_C_COMPILER_LINKER "")
set(CMAKE_C_COMPILER_LINKER_ID "")
set(CMAKE_C_COMPILER_LINKER_VERSION )
set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT )
set(CMAKE_MT "")
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
set(CMAKE_COMPILER_IS_GNUCC 1)
set(CMAKE_C_COMPILER_LOADED 1)
set(CMAKE_C_COMPILER_WORKS TRUE)
set(CMAKE_C_ABI_COMPILED )
set(CMAKE_C_COMPILER_ENV_VAR "CC")
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)
set(CMAKE_C_LINKER_DEPFILE_SUPPORTED )
set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED )
set(CMAKE_C_LINKER_PUSHPOP_STATE_SUPPORTED )
# 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 "")

View File

@@ -0,0 +1,102 @@
set(CMAKE_CXX_COMPILER "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-g++")
set(CMAKE_CXX_COMPILER_ARG1 "")
set(CMAKE_CXX_COMPILER_ID "GNU")
set(CMAKE_CXX_COMPILER_VERSION "14.3.0")
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
set(CMAKE_CXX_COMPILER_WRAPPER "")
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17")
set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON")
set(CMAKE_CXX_STANDARD_LATEST "26")
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_CXX26_COMPILE_FEATURES "")
set(CMAKE_CXX_PLATFORM_ID "")
set(CMAKE_CXX_SIMULATE_ID "")
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU")
set(CMAKE_CXX_COMPILER_APPLE_SYSROOT "")
set(CMAKE_CXX_SIMULATE_VERSION "")
set(CMAKE_CXX_COMPILER_ARCHITECTURE_ID "")
set(CMAKE_AR "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar")
set(CMAKE_CXX_COMPILER_AR "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ar")
set(CMAKE_RANLIB "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib")
set(CMAKE_CXX_COMPILER_RANLIB "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc-ranlib")
set(CMAKE_LINKER "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/xtensa-espressif_esp32s3_zephyr-elf/bin/ld.bfd")
set(CMAKE_LINKER_LINK "")
set(CMAKE_LINKER_LLD "")
set(CMAKE_CXX_COMPILER_LINKER "")
set(CMAKE_CXX_COMPILER_LINKER_ID "")
set(CMAKE_CXX_COMPILER_LINKER_VERSION )
set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT )
set(CMAKE_MT "")
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
set(CMAKE_COMPILER_IS_GNUCXX 1)
set(CMAKE_CXX_COMPILER_LOADED 1)
set(CMAKE_CXX_COMPILER_WORKS TRUE)
set(CMAKE_CXX_ABI_COMPILED )
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
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;ccm;cxxm;c++m)
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
foreach (lang IN ITEMS 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)
set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED )
set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED )
set(CMAKE_CXX_LINKER_PUSHPOP_STATE_SUPPORTED )
# 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 "")
set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "")
set(CMAKE_CXX_COMPILER_IMPORT_STD "")
set(CMAKE_CXX_COMPILER_IMPORT_STD_ERROR_MESSAGE "")
set(CMAKE_CXX_STDLIB_MODULES_JSON "")

View File

@@ -0,0 +1,15 @@
set(CMAKE_HOST_SYSTEM "Darwin-25.3.0")
set(CMAKE_HOST_SYSTEM_NAME "Darwin")
set(CMAKE_HOST_SYSTEM_VERSION "25.3.0")
set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64")
set(CMAKE_SYSTEM "Generic-4.4.0")
set(CMAKE_SYSTEM_NAME "Generic")
set(CMAKE_SYSTEM_VERSION "4.4.0")
set(CMAKE_SYSTEM_PROCESSOR "xtensa")
set(CMAKE_CROSSCOMPILING "TRUE")
set(CMAKE_SYSTEM_LOADED 1)

View File

@@ -0,0 +1,934 @@
#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(__open_xl__) && defined(__clang__)
# define COMPILER_ID "IBMClang"
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
#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(__clang__) && defined(__cray__)
# define COMPILER_ID "CrayClang"
# define COMPILER_VERSION_MAJOR DEC(__cray_major__)
# define COMPILER_VERSION_MINOR DEC(__cray_minor__)
# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__)
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
#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(__TASKING__)
# define COMPILER_ID "Tasking"
# define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000)
# define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100)
# define COMPILER_VERSION_INTERNAL DEC(__VERSION__)
#elif defined(__ORANGEC__)
# define COMPILER_ID "OrangeC"
# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__)
# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__)
# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__)
#elif defined(__RENESAS__)
# define COMPILER_ID "Renesas"
/* __RENESAS_VERSION__ = 0xVVRRPP00 */
# define COMPILER_VERSION_MAJOR HEX(__RENESAS_VERSION__ >> 24 & 0xFF)
# define COMPILER_VERSION_MINOR HEX(__RENESAS_VERSION__ >> 16 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__RENESAS_VERSION__ >> 8 & 0xFF)
#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/100 % 100)
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
#elif defined(__clang__) && defined(__ti__)
# define COMPILER_ID "TIClang"
# define COMPILER_VERSION_MAJOR DEC(__ti_major__)
# define COMPILER_VERSION_MINOR DEC(__ti_minor__)
# define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__)
# define COMPILER_VERSION_INTERNAL DEC(__ti_version__)
#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(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
# define COMPILER_ID "LCC"
# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100)
# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100)
# if defined(__LCC_MINOR__)
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
# endif
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
# define SIMULATE_ID "GNU"
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
# if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
# 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(_ADI_COMPILER)
# define COMPILER_ID "ADSP"
#if defined(__VERSIONNUM__)
/* __VERSIONNUM__ = 0xVVRRPPTT */
# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 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(__DCC__) && defined(_DIAB_TOOL)
# define COMPILER_ID "Diab"
# define COMPILER_VERSION_MAJOR DEC(__VERSION_MAJOR_NUMBER__)
# define COMPILER_VERSION_MINOR DEC(__VERSION_MINOR_NUMBER__)
# define COMPILER_VERSION_PATCH DEC(__VERSION_ARCH_FEATURE_NUMBER__)
# define COMPILER_VERSION_TWEAK DEC(__VERSION_BUG_FIX_NUMBER__)
#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
# elif defined(_ADI_COMPILER)
# define PLATFORM_ID "ADSP"
#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(__clang__) && defined(__ti__)
# if defined(__ARM_ARCH)
# define ARCHITECTURE_ID "ARM"
# 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
# elif defined(__ADSPSHARC__)
# define ARCHITECTURE_ID "SHARC"
# elif defined(__ADSPBLACKFIN__)
# define ARCHITECTURE_ID "Blackfin"
#elif defined(__TASKING__)
# if defined(__CTC__) || defined(__CPTC__)
# define ARCHITECTURE_ID "TriCore"
# elif defined(__CMCS__)
# define ARCHITECTURE_ID "MCS"
# elif defined(__CARM__) || defined(__CPARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__CARC__)
# define ARCHITECTURE_ID "ARC"
# elif defined(__C51__)
# define ARCHITECTURE_ID "8051"
# elif defined(__CPCP__)
# define ARCHITECTURE_ID "PCP"
# else
# define ARCHITECTURE_ID ""
# endif
#elif defined(__RENESAS__)
# if defined(__CCRX__)
# define ARCHITECTURE_ID "RX"
# elif defined(__CCRL__)
# define ARCHITECTURE_ID "RL78"
# elif defined(__CCRH__)
# define ARCHITECTURE_ID "RH850"
# else
# 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 "]";
#define C_STD_99 199901L
#define C_STD_11 201112L
#define C_STD_17 201710L
#define C_STD_23 202311L
#ifdef __STDC_VERSION__
# define C_STD __STDC_VERSION__
#endif
#if !defined(__STDC__) && !defined(__clang__) && !defined(__RENESAS__)
# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__)
# define C_VERSION "90"
# else
# define C_VERSION
# endif
#elif C_STD > C_STD_17
# define C_VERSION "23"
#elif C_STD > C_STD_11
# define C_VERSION "17"
#elif C_STD > C_STD_99
# define C_VERSION "11"
#elif C_STD >= C_STD_99
# define C_VERSION "99"
#else
# define C_VERSION "90"
#endif
const char* info_language_standard_default =
"INFO" ":" "standard_default[" C_VERSION "]";
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
defined(__TI_COMPILER_VERSION__) || defined(__RENESAS__)) && \
!defined(__STRICT_ANSI__)
"ON"
#else
"OFF"
#endif
"]";
/*--------------------------------------------------------------------------*/
#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
#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR)
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_standard_default[argc];
require += info_language_extensions_default[argc];
(void)argv;
return require;
}
#endif

Binary file not shown.

View File

@@ -0,0 +1,949 @@
/* 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(__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(__open_xl__) && defined(__clang__)
# define COMPILER_ID "IBMClang"
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
#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(__clang__) && defined(__cray__)
# define COMPILER_ID "CrayClang"
# define COMPILER_VERSION_MAJOR DEC(__cray_major__)
# define COMPILER_VERSION_MINOR DEC(__cray_minor__)
# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__)
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
#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(__TASKING__)
# define COMPILER_ID "Tasking"
# define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000)
# define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100)
# define COMPILER_VERSION_INTERNAL DEC(__VERSION__)
#elif defined(__ORANGEC__)
# define COMPILER_ID "OrangeC"
# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__)
# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__)
# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__)
#elif defined(__RENESAS__)
# define COMPILER_ID "Renesas"
/* __RENESAS_VERSION__ = 0xVVRRPP00 */
# define COMPILER_VERSION_MAJOR HEX(__RENESAS_VERSION__ >> 24 & 0xFF)
# define COMPILER_VERSION_MINOR HEX(__RENESAS_VERSION__ >> 16 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__RENESAS_VERSION__ >> 8 & 0xFF)
#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/100 % 100)
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
#elif defined(__clang__) && defined(__ti__)
# define COMPILER_ID "TIClang"
# define COMPILER_VERSION_MAJOR DEC(__ti_major__)
# define COMPILER_VERSION_MINOR DEC(__ti_minor__)
# define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__)
# define COMPILER_VERSION_INTERNAL DEC(__ti_version__)
#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(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
# define COMPILER_ID "LCC"
# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100)
# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100)
# if defined(__LCC_MINOR__)
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
# endif
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
# define SIMULATE_ID "GNU"
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
# if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
# 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(_ADI_COMPILER)
# define COMPILER_ID "ADSP"
#if defined(__VERSIONNUM__)
/* __VERSIONNUM__ = 0xVVRRPPTT */
# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 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(__DCC__) && defined(_DIAB_TOOL)
# define COMPILER_ID "Diab"
# define COMPILER_VERSION_MAJOR DEC(__VERSION_MAJOR_NUMBER__)
# define COMPILER_VERSION_MINOR DEC(__VERSION_MINOR_NUMBER__)
# define COMPILER_VERSION_PATCH DEC(__VERSION_ARCH_FEATURE_NUMBER__)
# define COMPILER_VERSION_TWEAK DEC(__VERSION_BUG_FIX_NUMBER__)
/* 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
# elif defined(_ADI_COMPILER)
# define PLATFORM_ID "ADSP"
#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(__clang__) && defined(__ti__)
# if defined(__ARM_ARCH)
# define ARCHITECTURE_ID "ARM"
# 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
# elif defined(__ADSPSHARC__)
# define ARCHITECTURE_ID "SHARC"
# elif defined(__ADSPBLACKFIN__)
# define ARCHITECTURE_ID "Blackfin"
#elif defined(__TASKING__)
# if defined(__CTC__) || defined(__CPTC__)
# define ARCHITECTURE_ID "TriCore"
# elif defined(__CMCS__)
# define ARCHITECTURE_ID "MCS"
# elif defined(__CARM__) || defined(__CPARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__CARC__)
# define ARCHITECTURE_ID "ARC"
# elif defined(__C51__)
# define ARCHITECTURE_ID "8051"
# elif defined(__CPCP__)
# define ARCHITECTURE_ID "PCP"
# else
# define ARCHITECTURE_ID ""
# endif
#elif defined(__RENESAS__)
# if defined(__CCRX__)
# define ARCHITECTURE_ID "RX"
# elif defined(__CCRL__)
# define ARCHITECTURE_ID "RL78"
# elif defined(__CCRH__)
# define ARCHITECTURE_ID "RH850"
# else
# 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 "]";
#define CXX_STD_98 199711L
#define CXX_STD_11 201103L
#define CXX_STD_14 201402L
#define CXX_STD_17 201703L
#define CXX_STD_20 202002L
#define CXX_STD_23 202302L
#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG)
# if _MSVC_LANG > CXX_STD_17
# define CXX_STD _MSVC_LANG
# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init)
# define CXX_STD CXX_STD_20
# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17
# define CXX_STD CXX_STD_20
# elif _MSVC_LANG > CXX_STD_14
# define CXX_STD CXX_STD_17
# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi)
# define CXX_STD CXX_STD_14
# elif defined(__INTEL_CXX11_MODE__)
# define CXX_STD CXX_STD_11
# else
# define CXX_STD CXX_STD_98
# endif
#elif defined(_MSC_VER) && defined(_MSVC_LANG)
# if _MSVC_LANG > __cplusplus
# define CXX_STD _MSVC_LANG
# else
# define CXX_STD __cplusplus
# endif
#elif defined(__NVCOMPILER)
# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init)
# define CXX_STD CXX_STD_20
# else
# define CXX_STD __cplusplus
# endif
#elif defined(__INTEL_COMPILER) || defined(__PGI)
# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes)
# define CXX_STD CXX_STD_17
# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi)
# define CXX_STD CXX_STD_14
# else
# define CXX_STD __cplusplus
# endif
#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__)
# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi)
# define CXX_STD CXX_STD_14
# else
# define CXX_STD __cplusplus
# endif
#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__)
# define CXX_STD CXX_STD_11
#else
# define CXX_STD __cplusplus
#endif
const char* info_language_standard_default = "INFO" ":" "standard_default["
#if CXX_STD > CXX_STD_23
"26"
#elif CXX_STD > CXX_STD_20
"23"
#elif CXX_STD > CXX_STD_17
"20"
#elif CXX_STD > CXX_STD_14
"17"
#elif CXX_STD > CXX_STD_11
"14"
#elif CXX_STD >= CXX_STD_11
"11"
#else
"98"
#endif
"]";
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
defined(__TI_COMPILER_VERSION__) || defined(__RENESAS__)) && \
!defined(__STRICT_ANSI__)
"ON"
#else
"OFF"
#endif
"]";
/*--------------------------------------------------------------------------*/
int main(int argc, char* argv[])
{
int require = 0;
require += info_compiler[argc];
require += info_platform[argc];
require += info_arch[argc];
#ifdef COMPILER_VERSION_MAJOR
require += info_version[argc];
#endif
#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR)
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_standard_default[argc];
require += info_language_extensions_default[argc];
(void)argv;
return require;
}

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,165 @@
{
"InstallScripts" :
[
"/Volumes/External/Work/radio/loramodem/build/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/arch/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/arch/common/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core/startup/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/lib/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/picolibc/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/common/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix/c_lang_support_r/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix/c_lib_ext/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/lib/hash/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/lib/heap/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/lib/mem_blocks/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/lib/midi2/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/lib/os/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/lib/utils/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/lib/uuid/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/soc/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/soc/common/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/soc/soc/esp32s3/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/soc/soc/esp32s3/common/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/soc/soc/esp32s3/esp32s3/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/boards/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/boards/shields/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/canbus/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/debug/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/fb/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/fs/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/gnss/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/instrumentation/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/ipc/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/kvss/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/logging/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/logging/backends/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/logging/frontends/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/mem_mgmt/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/mgmt/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/modbus/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/pm/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/pm/policy/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/pmci/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/portability/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/random/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/rtio/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/sd/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/stats/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/storage/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/task_wdt/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/testsuite/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/tracing/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/usb/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/usb/common/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/disk/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/firmware/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/interrupt_controller/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/misc/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/misc/interconn/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pcie/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb/common/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb/common/buf/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb_c/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/clock_control/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/console/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/gpio/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora/loramac-node/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pinctrl/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pinctrl/renesas/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/serial/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/spi/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/spi/spi_nxp_lpspi/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/timer/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/acpica/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/cmsis/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/cmsis-dsp/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/cmsis-nn/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/cmsis_6/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/dhara/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/fatfs/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/adi/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_afbr/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_ambiq/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/atmel/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common/components/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common/components/wifi/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_bouffalolab/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_espressif/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_espressif/hal_espressif/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_espressif/hal_espressif/esp32s3/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_ethos_u/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_gigadevice/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_infineon/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_intel/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/microchip/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_nordic/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/nuvoton/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_nxp/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_nxp/hal_nxp/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/openisa/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/quicklogic/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_realtek/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_realtek/hal_realtek/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_renesas/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_renesas/zephyr/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_renesas/drivers/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_rpi_pico/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_sifli/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_silabs/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_st/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_stm32/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_tdk/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_telink/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/ti/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink/source/ti/devices/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink_lpf3/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink_lpf3/source/ti/devices/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink_lpf3/source/ti/boards/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/ti/mspm0/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_wch/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hal_wurthelektronik/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/xtensa/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/hostap/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/liblc3/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/libmctp/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/libmetal/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/libsbc/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/littlefs/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/lora-basics-modem/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/loramac-node/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/lvgl/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/mbedtls/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/mcuboot/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/mipi-sys-t/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/nanopb/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/nrf_wifi/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/open-amp/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/openthread/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/percepio/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/picolibc/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/segger/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/trusted-firmware-a/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/trusted-firmware-m/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/uoscore-uedhoc/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/zcbor/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/modules/nrf_hw_models/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/flash/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/usage/cmake_install.cmake",
"/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/reports/cmake_install.cmake"
],
"Parallel" : false
}

View File

@@ -0,0 +1,384 @@
/Volumes/External/Work/radio/loramodem/build/CMakeFiles/boards.dir
/Volumes/External/Work/radio/loramodem/build/CMakeFiles/shields.dir
/Volumes/External/Work/radio/loramodem/build/CMakeFiles/snippets.dir
/Volumes/External/Work/radio/loramodem/build/CMakeFiles/devicetree_target.dir
/Volumes/External/Work/radio/loramodem/build/CMakeFiles/menuconfig.dir
/Volumes/External/Work/radio/loramodem/build/CMakeFiles/guiconfig.dir
/Volumes/External/Work/radio/loramodem/build/CMakeFiles/hardenconfig.dir
/Volumes/External/Work/radio/loramodem/build/CMakeFiles/traceconfig.dir
/Volumes/External/Work/radio/loramodem/build/CMakeFiles/config-twister.dir
/Volumes/External/Work/radio/loramodem/build/CMakeFiles/asm.dir
/Volumes/External/Work/radio/loramodem/build/CMakeFiles/compiler.dir
/Volumes/External/Work/radio/loramodem/build/CMakeFiles/compiler-cpp.dir
/Volumes/External/Work/radio/loramodem/build/CMakeFiles/linker.dir
/Volumes/External/Work/radio/loramodem/build/CMakeFiles/bintools.dir
/Volumes/External/Work/radio/loramodem/build/CMakeFiles/code_data_relocation_target.dir
/Volumes/External/Work/radio/loramodem/build/CMakeFiles/runners_yaml_props_target.dir
/Volumes/External/Work/radio/loramodem/build/CMakeFiles/pristine.dir
/Volumes/External/Work/radio/loramodem/build/CMakeFiles/zephyr_property_target.dir
/Volumes/External/Work/radio/loramodem/build/CMakeFiles/app.dir
/Volumes/External/Work/radio/loramodem/build/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/version_h.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/syscall_list_h_target.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/driver_validation_h_target.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/kobj_types_h_target.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/device_api_ld_target.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/offsets.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/offsets_h.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/linker_zephyr_prebuilt_script_target.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr_pre0.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/linker_zephyr_final_script_target.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/zephyr_final.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/initlevels.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/run.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/build_info_yaml_saved.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/arch/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/arch/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/arch/common/CMakeFiles/arch__common.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/arch/common/CMakeFiles/isr_tables.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/arch/common/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/arch/common/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core/CMakeFiles/arch__xtensa__core.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core/CMakeFiles/zsr_h.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core/CMakeFiles/xtensa_vectors_ld.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core/startup/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/arch/arch/xtensa/core/startup/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/picolibc/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/picolibc/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/common/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/libc/common/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix/c_lang_support_r/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix/c_lang_support_r/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/lib__posix__c_lib_ext.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/posix/c_lib_ext/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/hash/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/hash/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/heap/CMakeFiles/heap_constants.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/heap/CMakeFiles/heap_constants_h.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/heap/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/heap/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/mem_blocks/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/mem_blocks/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/midi2/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/midi2/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/os/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/os/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/utils/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/utils/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/uuid/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/lib/uuid/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/soc/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/soc/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/soc/common/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/soc/common/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/soc/soc/esp32s3/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/soc/soc/esp32s3/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/soc/soc/esp32s3/common/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/soc/soc/esp32s3/common/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/soc/soc/esp32s3/esp32s3/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/soc/soc/esp32s3/esp32s3/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/boards/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/boards/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/boards/shields/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/boards/shields/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/canbus/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/canbus/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/debug/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/debug/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/fb/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/fb/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/fs/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/fs/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/gnss/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/gnss/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/instrumentation/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/instrumentation/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/ipc/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/ipc/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/kvss/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/kvss/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/logging/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/logging/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/logging/backends/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/logging/backends/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/logging/frontends/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/logging/frontends/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/mem_mgmt/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/mem_mgmt/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/mgmt/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/mgmt/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/modbus/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/modbus/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/pm/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/pm/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/pm/policy/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/pm/policy/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/pmci/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/pmci/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/portability/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/portability/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/random/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/random/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/rtio/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/rtio/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/sd/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/sd/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/stats/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/stats/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/storage/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/storage/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/task_wdt/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/task_wdt/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/testsuite/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/testsuite/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/tracing/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/tracing/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/usb/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/usb/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/usb/common/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/subsys/usb/common/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/disk/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/disk/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/firmware/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/firmware/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/interrupt_controller/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/interrupt_controller/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/misc/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/misc/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/misc/interconn/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/misc/interconn/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pcie/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pcie/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb/common/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb/common/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb/common/buf/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb/common/buf/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb_c/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/usb_c/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/clock_control/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/clock_control/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/console/CMakeFiles/drivers__console.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/console/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/console/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/gpio/CMakeFiles/drivers__gpio.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/gpio/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/gpio/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora/loramac-node/CMakeFiles/loramac-node.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora/loramac-node/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/lora/loramac-node/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pinctrl/CMakeFiles/drivers__pinctrl.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pinctrl/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pinctrl/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pinctrl/renesas/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/pinctrl/renesas/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/serial/CMakeFiles/drivers__serial.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/serial/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/serial/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/spi/CMakeFiles/drivers__spi.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/spi/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/spi/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/spi/spi_nxp_lpspi/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/spi/spi_nxp_lpspi/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/timer/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/drivers/timer/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/acpica/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/acpica/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/cmsis/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/cmsis/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/cmsis-dsp/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/cmsis-dsp/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/cmsis-nn/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/cmsis-nn/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/cmsis_6/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/cmsis_6/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/dhara/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/dhara/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/fatfs/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/fatfs/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/adi/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/adi/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_afbr/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_afbr/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_ambiq/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_ambiq/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/atmel/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/atmel/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common/components/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common/components/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common/components/wifi/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common/components/wifi/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_bouffalolab/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_bouffalolab/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_espressif/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_espressif/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_espressif/hal_espressif/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_espressif/hal_espressif/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_espressif/hal_espressif/esp32s3/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_espressif/hal_espressif/esp32s3/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_ethos_u/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_ethos_u/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_gigadevice/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_gigadevice/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_infineon/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_infineon/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_intel/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_intel/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/microchip/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/microchip/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_nordic/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_nordic/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/nuvoton/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/nuvoton/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_nxp/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_nxp/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_nxp/hal_nxp/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_nxp/hal_nxp/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/openisa/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/openisa/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/quicklogic/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/quicklogic/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_realtek/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_realtek/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_realtek/hal_realtek/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_realtek/hal_realtek/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_renesas/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_renesas/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_renesas/zephyr/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_renesas/zephyr/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_renesas/drivers/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_renesas/drivers/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_rpi_pico/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_rpi_pico/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_sifli/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_sifli/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_silabs/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_silabs/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_st/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_st/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_stm32/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_stm32/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_tdk/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_tdk/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_telink/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_telink/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/ti/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/ti/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink/source/ti/devices/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink/source/ti/devices/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink_lpf3/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink_lpf3/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink_lpf3/source/ti/devices/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink_lpf3/source/ti/devices/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink_lpf3/source/ti/boards/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/ti/simplelink_lpf3/source/ti/boards/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/ti/mspm0/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/ti/mspm0/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_wch/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_wch/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_wurthelektronik/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hal_wurthelektronik/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/xtensa/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/xtensa/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hostap/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/hostap/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/liblc3/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/liblc3/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/libmctp/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/libmctp/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/libmetal/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/libmetal/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/libsbc/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/libsbc/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/littlefs/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/littlefs/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/lora-basics-modem/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/lora-basics-modem/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/loramac-node/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/loramac-node/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/lvgl/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/lvgl/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/mbedtls/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/mbedtls/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/mcuboot/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/mcuboot/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/mipi-sys-t/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/mipi-sys-t/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/nanopb/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/nanopb/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/nrf_wifi/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/nrf_wifi/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/open-amp/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/open-amp/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/openthread/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/openthread/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/percepio/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/percepio/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/picolibc/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/picolibc/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/segger/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/segger/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/trusted-firmware-a/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/trusted-firmware-a/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/trusted-firmware-m/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/trusted-firmware-m/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/uoscore-uedhoc/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/uoscore-uedhoc/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/zcbor/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/zcbor/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/nrf_hw_models/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/modules/nrf_hw_models/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/kernel.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/kernel/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/flash/CMakeFiles/flash.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/flash/CMakeFiles/debug.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/flash/CMakeFiles/debugserver.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/flash/CMakeFiles/attach.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/flash/CMakeFiles/rtt.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/flash/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/flash/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/usage/CMakeFiles/usage.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/usage/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/usage/CMakeFiles/rebuild_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/reports/CMakeFiles/ram_report.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/reports/CMakeFiles/ram_plot.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/reports/CMakeFiles/rom_report.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/reports/CMakeFiles/rom_plot.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/reports/CMakeFiles/footprint.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/reports/CMakeFiles/dashboard.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/reports/CMakeFiles/edit_cache.dir
/Volumes/External/Work/radio/loramodem/build/zephyr/cmake/reports/CMakeFiles/rebuild_cache.dir

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,8 @@
# Additional clean files
cmake_minimum_required(VERSION 3.16)
if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "")
file(REMOVE_RECURSE
"zephyr/include/generated/zephyr/syscalls"
)
endif()

View File

@@ -0,0 +1 @@
# This file is generated by cmake for dependency checking of the CMakeCache.txt file

View File

@@ -0,0 +1,473 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Ninja" Generator, CMake Version 4.3
# 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: loramodem
# Configurations:
# =============================================================================
# =============================================================================
#############################################
# Rule for compiling C files.
rule C_COMPILER__app_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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 /opt/homebrew/bin/cmake -E rm -f $TARGET_FILE && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib $TARGET_FILE && ccache /opt/homebrew/bin/cmake -E touch $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for running custom commands.
rule CUSTOM_COMMAND
command = $COMMAND
description = $DESC
#############################################
# Rule for compiling ASM files.
rule ASM_COMPILER__zephyr_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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__zephyr_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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 /opt/homebrew/bin/cmake -E rm -f $TARGET_FILE && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib $TARGET_FILE && ccache /opt/homebrew/bin/cmake -E touch $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__offsets_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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__zephyr_pre0_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES -L"/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/space" -lc -lgcc && $POST_BUILD
description = Linking C executable $TARGET_FILE; Logical command for additional byproducts on target: zephyr_pre0
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__zephyr_final_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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 /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-gcc $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES -L"/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/../lib/gcc/xtensa-espressif_esp32s3_zephyr-elf/14.3.0/space" -lc -lgcc && $POST_BUILD
description = Linking C executable $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__arch__common_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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 /opt/homebrew/bin/cmake -E rm -f $TARGET_FILE && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib $TARGET_FILE && ccache /opt/homebrew/bin/cmake -E touch $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__isr_tables_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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 /opt/homebrew/bin/cmake -E rm -f $TARGET_FILE && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib $TARGET_FILE && ccache /opt/homebrew/bin/cmake -E touch $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling ASM files.
rule ASM_COMPILER__arch__xtensa__core_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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__xtensa__core_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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__xtensa__core_
command = $PRE_LINK && ccache /opt/homebrew/bin/cmake -E rm -f $TARGET_FILE && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib $TARGET_FILE && ccache /opt/homebrew/bin/cmake -E touch $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__lib__libc__picolibc_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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 /opt/homebrew/bin/cmake -E rm -f $TARGET_FILE && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib $TARGET_FILE && ccache /opt/homebrew/bin/cmake -E touch $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__lib__libc__common_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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 /opt/homebrew/bin/cmake -E rm -f $TARGET_FILE && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib $TARGET_FILE && ccache /opt/homebrew/bin/cmake -E touch $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__lib__posix__c_lib_ext_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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__c_lib_ext_
command = $PRE_LINK && ccache /opt/homebrew/bin/cmake -E rm -f $TARGET_FILE && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib $TARGET_FILE && ccache /opt/homebrew/bin/cmake -E touch $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__heap_constants_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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__drivers__interrupt_controller_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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 /opt/homebrew/bin/cmake -E rm -f $TARGET_FILE && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib $TARGET_FILE && ccache /opt/homebrew/bin/cmake -E touch $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__drivers__clock_control_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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 /opt/homebrew/bin/cmake -E rm -f $TARGET_FILE && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib $TARGET_FILE && ccache /opt/homebrew/bin/cmake -E touch $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__drivers__console_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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 /opt/homebrew/bin/cmake -E rm -f $TARGET_FILE && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib $TARGET_FILE && ccache /opt/homebrew/bin/cmake -E touch $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__drivers__gpio_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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 /opt/homebrew/bin/cmake -E rm -f $TARGET_FILE && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib $TARGET_FILE && ccache /opt/homebrew/bin/cmake -E touch $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__loramac-node_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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__loramac-node_
command = $PRE_LINK && ccache /opt/homebrew/bin/cmake -E rm -f $TARGET_FILE && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib $TARGET_FILE && ccache /opt/homebrew/bin/cmake -E touch $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__drivers__pinctrl_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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 /opt/homebrew/bin/cmake -E rm -f $TARGET_FILE && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib $TARGET_FILE && ccache /opt/homebrew/bin/cmake -E touch $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__drivers__serial_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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 /opt/homebrew/bin/cmake -E rm -f $TARGET_FILE && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib $TARGET_FILE && ccache /opt/homebrew/bin/cmake -E touch $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__drivers__spi_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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__spi_
command = $PRE_LINK && ccache /opt/homebrew/bin/cmake -E rm -f $TARGET_FILE && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib $TARGET_FILE && ccache /opt/homebrew/bin/cmake -E touch $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__drivers__timer_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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 /opt/homebrew/bin/cmake -E rm -f $TARGET_FILE && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib $TARGET_FILE && ccache /opt/homebrew/bin/cmake -E touch $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__kernel_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ccache ${LAUNCHER}${CODE_CHECK}/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-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 /opt/homebrew/bin/cmake -E rm -f $TARGET_FILE && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && ccache /Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-ranlib $TARGET_FILE && ccache /opt/homebrew/bin/cmake -E touch $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for re-running cmake.
rule RERUN_CMAKE
command = /opt/homebrew/bin/cmake --regenerate-during-build -S/Volumes/External/Work/radio/loramodem/app -B/Volumes/External/Work/radio/loramodem/build
description = Re-running CMake...
generator = 1
#############################################
# Rule for cleaning additional files.
rule CLEAN_ADDITIONAL
command = /opt/homebrew/bin/cmake -DCONFIG=$CONFIG -P CMakeFiles/clean_additional.cmake
description = Cleaning additional files...
#############################################
# Rule for cleaning all built files.
rule CLEAN
command = /opt/homebrew/bin/ninja $FILE_ARG -t clean $TARGETS
description = Cleaning all built files...
#############################################
# Rule for printing all primary targets available.
rule HELP
command = /opt/homebrew/bin/ninja -t targets
description = All primary targets available:

16738
build/Kconfig/Kconfig.dts Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,357 @@
menu "acpica (/Users/wijnand/zephyrproject/modules/lib/acpica)"
osource "$(ZEPHYR_ACPICA_KCONFIG)"
config ZEPHYR_ACPICA_MODULE
bool
default y
endmenu
menu "cmsis (/Users/wijnand/zephyrproject/modules/hal/cmsis)"
osource "$(ZEPHYR_CMSIS_KCONFIG)"
config ZEPHYR_CMSIS_MODULE
bool
default y
endmenu
menu "cmsis-dsp (/Users/wijnand/zephyrproject/modules/lib/cmsis-dsp)"
osource "$(ZEPHYR_CMSIS_DSP_KCONFIG)"
config ZEPHYR_CMSIS_DSP_MODULE
bool
default y
endmenu
menu "cmsis-nn (/Users/wijnand/zephyrproject/modules/lib/cmsis-nn)"
osource "$(ZEPHYR_CMSIS_NN_KCONFIG)"
config ZEPHYR_CMSIS_NN_MODULE
bool
default y
endmenu
menu "cmsis_6 (/Users/wijnand/zephyrproject/modules/hal/cmsis_6)"
osource "$(ZEPHYR_CMSIS_6_KCONFIG)"
config ZEPHYR_CMSIS_6_MODULE
bool
default y
endmenu
menu "dhara (/Users/wijnand/zephyrproject/modules/lib/dhara)"
osource "$(ZEPHYR_DHARA_KCONFIG)"
config ZEPHYR_DHARA_MODULE
bool
default y
endmenu
menu "fatfs (/Users/wijnand/zephyrproject/modules/fs/fatfs)"
osource "$(ZEPHYR_FATFS_KCONFIG)"
config ZEPHYR_FATFS_MODULE
bool
default y
endmenu
config ZEPHYR_ADI_MODULE
bool
default y
menu "hal_afbr (/Users/wijnand/zephyrproject/modules/hal/afbr)"
osource "$(ZEPHYR_HAL_AFBR_KCONFIG)"
config ZEPHYR_HAL_AFBR_MODULE
bool
default y
config ZEPHYR_HAL_AFBR_MODULE_BLOBS
bool
endmenu
menu "hal_ambiq (/Users/wijnand/zephyrproject/modules/hal/ambiq)"
osource "$(ZEPHYR_HAL_AMBIQ_KCONFIG)"
config ZEPHYR_HAL_AMBIQ_MODULE
bool
default y
endmenu
config ZEPHYR_ATMEL_MODULE
bool
default y
menu "hal_bouffalolab (/Users/wijnand/zephyrproject/modules/hal/bouffalolab)"
osource "$(ZEPHYR_HAL_BOUFFALOLAB_KCONFIG)"
config ZEPHYR_HAL_BOUFFALOLAB_MODULE
bool
default y
config ZEPHYR_HAL_BOUFFALOLAB_MODULE_BLOBS
bool
endmenu
menu "hal_espressif (/Users/wijnand/zephyrproject/modules/hal/espressif)"
osource "$(ZEPHYR_HAL_ESPRESSIF_KCONFIG)"
config ZEPHYR_HAL_ESPRESSIF_MODULE
bool
default y
config ZEPHYR_HAL_ESPRESSIF_MODULE_BLOBS
bool
endmenu
menu "hal_ethos_u (/Users/wijnand/zephyrproject/modules/hal/ethos_u)"
osource "$(ZEPHYR_HAL_ETHOS_U_KCONFIG)"
config ZEPHYR_HAL_ETHOS_U_MODULE
bool
default y
endmenu
menu "hal_gigadevice (/Users/wijnand/zephyrproject/modules/hal/gigadevice)"
osource "$(ZEPHYR_HAL_GIGADEVICE_KCONFIG)"
config ZEPHYR_HAL_GIGADEVICE_MODULE
bool
default y
endmenu
menu "hal_infineon (/Users/wijnand/zephyrproject/modules/hal/infineon)"
osource "$(ZEPHYR_HAL_INFINEON_KCONFIG)"
config ZEPHYR_HAL_INFINEON_MODULE
bool
default y
config ZEPHYR_HAL_INFINEON_MODULE_BLOBS
bool
endmenu
menu "hal_intel (/Users/wijnand/zephyrproject/modules/hal/intel)"
osource "/Users/wijnand/zephyrproject/modules/hal/intel/zephyr/Kconfig"
config ZEPHYR_HAL_INTEL_MODULE
bool
default y
endmenu
config ZEPHYR_MICROCHIP_MODULE
bool
default y
menu "hal_nordic (/Users/wijnand/zephyrproject/modules/hal/nordic)"
osource "$(ZEPHYR_HAL_NORDIC_KCONFIG)"
config ZEPHYR_HAL_NORDIC_MODULE
bool
default y
config ZEPHYR_HAL_NORDIC_MODULE_BLOBS
bool
endmenu
config ZEPHYR_NUVOTON_MODULE
bool
default y
menu "hal_nxp (/Users/wijnand/zephyrproject/modules/hal/nxp)"
osource "$(ZEPHYR_HAL_NXP_KCONFIG)"
config ZEPHYR_HAL_NXP_MODULE
bool
default y
config ZEPHYR_HAL_NXP_MODULE_BLOBS
bool
endmenu
config ZEPHYR_OPENISA_MODULE
bool
default y
config ZEPHYR_QUICKLOGIC_MODULE
bool
default y
menu "hal_realtek (/Users/wijnand/zephyrproject/modules/hal/realtek)"
osource "$(ZEPHYR_HAL_REALTEK_KCONFIG)"
config ZEPHYR_HAL_REALTEK_MODULE
bool
default y
config ZEPHYR_HAL_REALTEK_MODULE_BLOBS
bool
endmenu
config ZEPHYR_HAL_RENESAS_MODULE
bool
default y
config ZEPHYR_HAL_RENESAS_MODULE_BLOBS
bool
menu "hal_rpi_pico (/Users/wijnand/zephyrproject/modules/hal/rpi_pico)"
osource "$(ZEPHYR_HAL_RPI_PICO_KCONFIG)"
config ZEPHYR_HAL_RPI_PICO_MODULE
bool
default y
endmenu
menu "hal_sifli (/Users/wijnand/zephyrproject/modules/hal/sifli)"
osource "$(ZEPHYR_HAL_SIFLI_KCONFIG)"
config ZEPHYR_HAL_SIFLI_MODULE
bool
default y
config ZEPHYR_HAL_SIFLI_MODULE_BLOBS
bool
endmenu
menu "hal_silabs (/Users/wijnand/zephyrproject/modules/hal/silabs)"
osource "$(ZEPHYR_HAL_SILABS_KCONFIG)"
config ZEPHYR_HAL_SILABS_MODULE
bool
default y
config ZEPHYR_HAL_SILABS_MODULE_BLOBS
bool
endmenu
menu "hal_st (/Users/wijnand/zephyrproject/modules/hal/st)"
osource "$(ZEPHYR_HAL_ST_KCONFIG)"
config ZEPHYR_HAL_ST_MODULE
bool
default y
endmenu
config ZEPHYR_HAL_STM32_MODULE
bool
default y
config ZEPHYR_HAL_STM32_MODULE_BLOBS
bool
menu "hal_tdk (/Users/wijnand/zephyrproject/modules/hal/tdk)"
osource "$(ZEPHYR_HAL_TDK_KCONFIG)"
config ZEPHYR_HAL_TDK_MODULE
bool
default y
endmenu
menu "hal_telink (/Users/wijnand/zephyrproject/modules/hal/telink)"
osource "/Users/wijnand/zephyrproject/modules/hal/telink/Kconfig"
config ZEPHYR_HAL_TELINK_MODULE
bool
default y
endmenu
config ZEPHYR_TI_MODULE
bool
default y
menu "hal_wch (/Users/wijnand/zephyrproject/modules/hal/wch)"
osource "$(ZEPHYR_HAL_WCH_KCONFIG)"
config ZEPHYR_HAL_WCH_MODULE
bool
default y
endmenu
config ZEPHYR_HAL_WURTHELEKTRONIK_MODULE
bool
default y
config ZEPHYR_XTENSA_MODULE
bool
default y
menu "hostap (/Users/wijnand/zephyrproject/modules/lib/hostap)"
osource "$(ZEPHYR_HOSTAP_KCONFIG)"
config ZEPHYR_HOSTAP_MODULE
bool
default y
endmenu
menu "liblc3 (/Users/wijnand/zephyrproject/modules/lib/liblc3)"
osource "$(ZEPHYR_LIBLC3_KCONFIG)"
config ZEPHYR_LIBLC3_MODULE
bool
default y
endmenu
config ZEPHYR_LIBMCTP_MODULE
bool
default y
config ZEPHYR_LIBMETAL_MODULE
bool
default y
menu "libsbc (/Users/wijnand/zephyrproject/modules/lib/libsbc)"
osource "$(ZEPHYR_LIBSBC_KCONFIG)"
config ZEPHYR_LIBSBC_MODULE
bool
default y
endmenu
menu "littlefs (/Users/wijnand/zephyrproject/modules/fs/littlefs)"
osource "$(ZEPHYR_LITTLEFS_KCONFIG)"
config ZEPHYR_LITTLEFS_MODULE
bool
default y
endmenu
menu "lora-basics-modem (/Users/wijnand/zephyrproject/modules/lib/lora-basics-modem)"
osource "$(ZEPHYR_LORA_BASICS_MODEM_KCONFIG)"
config ZEPHYR_LORA_BASICS_MODEM_MODULE
bool
default y
endmenu
menu "loramac-node (/Users/wijnand/zephyrproject/modules/lib/loramac-node)"
osource "$(ZEPHYR_LORAMAC_NODE_KCONFIG)"
config ZEPHYR_LORAMAC_NODE_MODULE
bool
default y
endmenu
menu "lvgl (/Users/wijnand/zephyrproject/modules/lib/gui/lvgl)"
osource "/Users/wijnand/zephyrproject/modules/lib/gui/lvgl/zephyr/Kconfig"
config ZEPHYR_LVGL_MODULE
bool
default y
endmenu
menu "mbedtls (/Users/wijnand/zephyrproject/modules/crypto/mbedtls)"
osource "$(ZEPHYR_MBEDTLS_KCONFIG)"
config ZEPHYR_MBEDTLS_MODULE
bool
default y
endmenu
config ZEPHYR_MBEDTLS_3_6_MODULE
bool
default y
config ZEPHYR_MCUBOOT_MODULE
bool
default y
config ZEPHYR_MIPI_SYS_T_MODULE
bool
default y
menu "nanopb (/Users/wijnand/zephyrproject/modules/lib/nanopb)"
osource "$(ZEPHYR_NANOPB_KCONFIG)"
config ZEPHYR_NANOPB_MODULE
bool
default y
endmenu
menu "nrf_wifi (/Users/wijnand/zephyrproject/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 "openthread (/Users/wijnand/zephyrproject/modules/lib/openthread)"
osource "$(ZEPHYR_OPENTHREAD_KCONFIG)"
config ZEPHYR_OPENTHREAD_MODULE
bool
default y
endmenu
menu "percepio (/Users/wijnand/zephyrproject/modules/debug/percepio)"
osource "/Users/wijnand/zephyrproject/modules/debug/percepio/zephyr/Kconfig"
config ZEPHYR_PERCEPIO_MODULE
bool
default y
endmenu
menu "picolibc (/Users/wijnand/zephyrproject/modules/lib/picolibc)"
osource "/Users/wijnand/zephyrproject/modules/lib/picolibc/zephyr/Kconfig"
config ZEPHYR_PICOLIBC_MODULE
bool
default y
endmenu
config ZEPHYR_PSA_ARCH_TESTS_MODULE
bool
default y
menu "segger (/Users/wijnand/zephyrproject/modules/debug/segger)"
osource "$(ZEPHYR_SEGGER_KCONFIG)"
config ZEPHYR_SEGGER_MODULE
bool
default y
endmenu
config ZEPHYR_TF_M_TESTS_MODULE
bool
default y
config ZEPHYR_TF_PSA_CRYPTO_MODULE
bool
default y
menu "trusted-firmware-a (/Users/wijnand/zephyrproject/modules/tee/tf-a/trusted-firmware-a)"
osource "$(ZEPHYR_TRUSTED_FIRMWARE_A_KCONFIG)"
config ZEPHYR_TRUSTED_FIRMWARE_A_MODULE
bool
default y
endmenu
menu "trusted-firmware-m (/Users/wijnand/zephyrproject/modules/tee/tf-m/trusted-firmware-m)"
osource "$(ZEPHYR_TRUSTED_FIRMWARE_M_KCONFIG)"
config ZEPHYR_TRUSTED_FIRMWARE_M_MODULE
bool
default y
endmenu
menu "uoscore-uedhoc (/Users/wijnand/zephyrproject/modules/lib/uoscore-uedhoc)"
osource "$(ZEPHYR_UOSCORE_UEDHOC_KCONFIG)"
config ZEPHYR_UOSCORE_UEDHOC_MODULE
bool
default y
endmenu
menu "zcbor (/Users/wijnand/zephyrproject/modules/lib/zcbor)"
osource "$(ZEPHYR_ZCBOR_KCONFIG)"
config ZEPHYR_ZCBOR_MODULE
bool
default y
endmenu
config ZEPHYR_NRF_HW_MODELS_MODULE
bool
default y

View File

@@ -0,0 +1 @@
osource "/Volumes/External/Work/radio/loramodem/app/../boards/shields/*/Kconfig.shield"

View File

@@ -0,0 +1 @@
osource "/Volumes/External/Work/radio/loramodem/app/../boards/shields/*/Kconfig.defconfig"

View File

@@ -0,0 +1,192 @@
config ZEPHYR_ACPICA_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_CMSIS_6_MODULE
bool
default y
config ZEPHYR_DHARA_MODULE
bool
default y
config ZEPHYR_FATFS_MODULE
bool
default y
config ZEPHYR_ADI_MODULE
bool
default y
config ZEPHYR_HAL_AFBR_MODULE
bool
default y
config ZEPHYR_HAL_AMBIQ_MODULE
bool
default y
config ZEPHYR_ATMEL_MODULE
bool
default y
config ZEPHYR_HAL_BOUFFALOLAB_MODULE
bool
default y
config ZEPHYR_HAL_ESPRESSIF_MODULE
bool
default y
config ZEPHYR_HAL_ETHOS_U_MODULE
bool
default y
config ZEPHYR_HAL_GIGADEVICE_MODULE
bool
default y
config ZEPHYR_HAL_INFINEON_MODULE
bool
default y
config ZEPHYR_HAL_INTEL_MODULE
bool
default y
config ZEPHYR_MICROCHIP_MODULE
bool
default y
config ZEPHYR_HAL_NORDIC_MODULE
bool
default y
config ZEPHYR_NUVOTON_MODULE
bool
default y
config ZEPHYR_HAL_NXP_MODULE
bool
default y
config ZEPHYR_OPENISA_MODULE
bool
default y
config ZEPHYR_QUICKLOGIC_MODULE
bool
default y
config ZEPHYR_HAL_REALTEK_MODULE
bool
default y
config ZEPHYR_HAL_RENESAS_MODULE
bool
default y
config ZEPHYR_HAL_RPI_PICO_MODULE
bool
default y
config ZEPHYR_HAL_SIFLI_MODULE
bool
default y
config ZEPHYR_HAL_SILABS_MODULE
bool
default y
config ZEPHYR_HAL_ST_MODULE
bool
default y
config ZEPHYR_HAL_STM32_MODULE
bool
default y
config ZEPHYR_HAL_TDK_MODULE
bool
default y
config ZEPHYR_HAL_TELINK_MODULE
bool
default y
config ZEPHYR_TI_MODULE
bool
default y
config ZEPHYR_HAL_WCH_MODULE
bool
default y
config ZEPHYR_HAL_WURTHELEKTRONIK_MODULE
bool
default y
config ZEPHYR_XTENSA_MODULE
bool
default y
config ZEPHYR_HOSTAP_MODULE
bool
default y
config ZEPHYR_LIBLC3_MODULE
bool
default y
config ZEPHYR_LIBMCTP_MODULE
bool
default y
config ZEPHYR_LIBMETAL_MODULE
bool
default y
config ZEPHYR_LIBSBC_MODULE
bool
default y
config ZEPHYR_LITTLEFS_MODULE
bool
default y
config ZEPHYR_LORA_BASICS_MODEM_MODULE
bool
default y
config ZEPHYR_LORAMAC_NODE_MODULE
bool
default y
config ZEPHYR_LVGL_MODULE
bool
default y
config ZEPHYR_MBEDTLS_MODULE
bool
default y
config ZEPHYR_MBEDTLS_3_6_MODULE
bool
default y
config ZEPHYR_MCUBOOT_MODULE
bool
default y
config ZEPHYR_MIPI_SYS_T_MODULE
bool
default y
config ZEPHYR_NANOPB_MODULE
bool
default y
config ZEPHYR_NRF_WIFI_MODULE
bool
default y
config ZEPHYR_OPEN_AMP_MODULE
bool
default y
config ZEPHYR_OPENTHREAD_MODULE
bool
default y
config ZEPHYR_PERCEPIO_MODULE
bool
default y
config ZEPHYR_PICOLIBC_MODULE
bool
default y
config ZEPHYR_PSA_ARCH_TESTS_MODULE
bool
default y
config ZEPHYR_SEGGER_MODULE
bool
default y
config ZEPHYR_TF_M_TESTS_MODULE
bool
default y
config ZEPHYR_TF_PSA_CRYPTO_MODULE
bool
default y
config ZEPHYR_TRUSTED_FIRMWARE_A_MODULE
bool
default y
config ZEPHYR_TRUSTED_FIRMWARE_M_MODULE
bool
default y
config ZEPHYR_UOSCORE_UEDHOC_MODULE
bool
default y
config ZEPHYR_ZCBOR_MODULE
bool
default y
config ZEPHYR_NRF_HW_MODELS_MODULE
bool
default y

View File

@@ -0,0 +1,12 @@
# Load Zephyr Arch Kconfig descriptions.
osource "/Users/wijnand/zephyrproject/zephyr/arch/rx/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/arch/x86/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/arch/xtensa/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/arch/sparc/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/arch/riscv/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/arch/posix/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/arch/openrisc/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/arch/mips/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/arch/arm64/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/arch/arm/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/arch/arc/Kconfig"

View File

@@ -0,0 +1,12 @@
# Load Zephyr Arch Kconfig descriptions.
osource "/Users/wijnand/zephyrproject/zephyr/arch/rx/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/arch/x86/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/arch/xtensa/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/arch/sparc/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/arch/riscv/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/arch/posix/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/arch/openrisc/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/arch/mips/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/arch/arm64/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/arch/arm/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/arch/arc/Kconfig"

View File

@@ -0,0 +1,2 @@
# Load Zephyr board Kconfig descriptions.
osource "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig"

View File

@@ -0,0 +1,2 @@
# Load Zephyr board defconfig descriptions.
osource "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig.defconfig"

View File

@@ -0,0 +1,2 @@
# Load Zephyr board defconfig descriptions.
osource "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig.defconfig"

View File

@@ -0,0 +1,2 @@
# Load Sysbuild board Kconfig descriptions.
osource "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig.sysbuild"

View File

@@ -0,0 +1,2 @@
# Load Sysbuild board Kconfig descriptions.
osource "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig.sysbuild"

View File

@@ -0,0 +1,2 @@
# Load Zephyr board Kconfig descriptions.
osource "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig"

View File

@@ -0,0 +1,2 @@
# Load board Kconfig descriptions.
osource "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig.xiao_esp32s3"

View File

@@ -0,0 +1,2 @@
# Load board Kconfig descriptions.
osource "/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/Kconfig.xiao_esp32s3"

View File

@@ -0,0 +1,65 @@
set(kconfig_env_dirs)
list(APPEND kconfig_env_dirs ZEPHYR_ACPICA_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/acpica)
list(APPEND kconfig_env_dirs ZEPHYR_CMSIS_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/cmsis)
list(APPEND kconfig_env_dirs ZEPHYR_CMSIS_DSP_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/cmsis-dsp)
list(APPEND kconfig_env_dirs ZEPHYR_CMSIS_NN_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/cmsis-nn)
list(APPEND kconfig_env_dirs ZEPHYR_CMSIS_6_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/cmsis_6)
list(APPEND kconfig_env_dirs ZEPHYR_DHARA_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/dhara)
list(APPEND kconfig_env_dirs ZEPHYR_FATFS_MODULE_DIR=/Users/wijnand/zephyrproject/modules/fs/fatfs)
list(APPEND kconfig_env_dirs ZEPHYR_ADI_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/adi)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_AFBR_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/afbr)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_AMBIQ_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/ambiq)
list(APPEND kconfig_env_dirs ZEPHYR_ATMEL_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/atmel)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_BOUFFALOLAB_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/bouffalolab)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_ESPRESSIF_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/espressif)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_ETHOS_U_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/ethos_u)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_GIGADEVICE_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/gigadevice)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_INFINEON_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/infineon)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_INTEL_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/intel)
list(APPEND kconfig_env_dirs ZEPHYR_MICROCHIP_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/microchip)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_NORDIC_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/nordic)
list(APPEND kconfig_env_dirs ZEPHYR_NUVOTON_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/nuvoton)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_NXP_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/nxp)
list(APPEND kconfig_env_dirs ZEPHYR_OPENISA_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/openisa)
list(APPEND kconfig_env_dirs ZEPHYR_QUICKLOGIC_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/quicklogic)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_REALTEK_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/realtek)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_RENESAS_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/renesas)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_RPI_PICO_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/rpi_pico)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_SIFLI_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/sifli)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_SILABS_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/silabs)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_ST_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/st)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_STM32_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/stm32)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_TDK_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/tdk)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_TELINK_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/telink)
list(APPEND kconfig_env_dirs ZEPHYR_TI_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/ti)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_WCH_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/wch)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_WURTHELEKTRONIK_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/wurthelektronik)
list(APPEND kconfig_env_dirs ZEPHYR_XTENSA_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/xtensa)
list(APPEND kconfig_env_dirs ZEPHYR_HOSTAP_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/hostap)
list(APPEND kconfig_env_dirs ZEPHYR_LIBLC3_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/liblc3)
list(APPEND kconfig_env_dirs ZEPHYR_LIBMCTP_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/libmctp)
list(APPEND kconfig_env_dirs ZEPHYR_LIBMETAL_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/libmetal)
list(APPEND kconfig_env_dirs ZEPHYR_LIBSBC_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/libsbc)
list(APPEND kconfig_env_dirs ZEPHYR_LITTLEFS_MODULE_DIR=/Users/wijnand/zephyrproject/modules/fs/littlefs)
list(APPEND kconfig_env_dirs ZEPHYR_LORA_BASICS_MODEM_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/lora-basics-modem)
list(APPEND kconfig_env_dirs ZEPHYR_LORAMAC_NODE_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/loramac-node)
list(APPEND kconfig_env_dirs ZEPHYR_LVGL_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/gui/lvgl)
list(APPEND kconfig_env_dirs ZEPHYR_MBEDTLS_MODULE_DIR=/Users/wijnand/zephyrproject/modules/crypto/mbedtls)
list(APPEND kconfig_env_dirs ZEPHYR_MBEDTLS_3_6_MODULE_DIR=/Users/wijnand/zephyrproject/modules/crypto/mbedtls-3.6)
list(APPEND kconfig_env_dirs ZEPHYR_MCUBOOT_MODULE_DIR=/Users/wijnand/zephyrproject/bootloader/mcuboot)
list(APPEND kconfig_env_dirs ZEPHYR_MIPI_SYS_T_MODULE_DIR=/Users/wijnand/zephyrproject/modules/debug/mipi-sys-t)
list(APPEND kconfig_env_dirs ZEPHYR_NANOPB_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/nanopb)
list(APPEND kconfig_env_dirs ZEPHYR_NRF_WIFI_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/nrf_wifi)
list(APPEND kconfig_env_dirs ZEPHYR_OPEN_AMP_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/open-amp)
list(APPEND kconfig_env_dirs ZEPHYR_OPENTHREAD_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/openthread)
list(APPEND kconfig_env_dirs ZEPHYR_PERCEPIO_MODULE_DIR=/Users/wijnand/zephyrproject/modules/debug/percepio)
list(APPEND kconfig_env_dirs ZEPHYR_PICOLIBC_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/picolibc)
list(APPEND kconfig_env_dirs ZEPHYR_PSA_ARCH_TESTS_MODULE_DIR=/Users/wijnand/zephyrproject/modules/tee/tf-m/psa-arch-tests)
list(APPEND kconfig_env_dirs ZEPHYR_SEGGER_MODULE_DIR=/Users/wijnand/zephyrproject/modules/debug/segger)
list(APPEND kconfig_env_dirs ZEPHYR_TF_M_TESTS_MODULE_DIR=/Users/wijnand/zephyrproject/modules/tee/tf-m/tf-m-tests)
list(APPEND kconfig_env_dirs ZEPHYR_TF_PSA_CRYPTO_MODULE_DIR=/Users/wijnand/zephyrproject/modules/crypto/mbedtls/tf-psa-crypto)
list(APPEND kconfig_env_dirs ZEPHYR_TRUSTED_FIRMWARE_A_MODULE_DIR=/Users/wijnand/zephyrproject/modules/tee/tf-a/trusted-firmware-a)
list(APPEND kconfig_env_dirs ZEPHYR_TRUSTED_FIRMWARE_M_MODULE_DIR=/Users/wijnand/zephyrproject/modules/tee/tf-m/trusted-firmware-m)
list(APPEND kconfig_env_dirs ZEPHYR_UOSCORE_UEDHOC_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/uoscore-uedhoc)
list(APPEND kconfig_env_dirs ZEPHYR_ZCBOR_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/zcbor)
list(APPEND kconfig_env_dirs ZEPHYR_NRF_HW_MODELS_MODULE_DIR=/Users/wijnand/zephyrproject/modules/bsim_hw_models/nrf_hw_models)

View File

@@ -0,0 +1,64 @@
ZEPHYR_ACPICA_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/acpica
ZEPHYR_CMSIS_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/cmsis
ZEPHYR_CMSIS_DSP_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/cmsis-dsp
ZEPHYR_CMSIS_NN_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/cmsis-nn
ZEPHYR_CMSIS_6_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/cmsis_6
ZEPHYR_DHARA_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/dhara
ZEPHYR_FATFS_MODULE_DIR=/Users/wijnand/zephyrproject/modules/fs/fatfs
ZEPHYR_ADI_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/adi
ZEPHYR_HAL_AFBR_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/afbr
ZEPHYR_HAL_AMBIQ_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/ambiq
ZEPHYR_ATMEL_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/atmel
ZEPHYR_HAL_BOUFFALOLAB_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/bouffalolab
ZEPHYR_HAL_ESPRESSIF_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/espressif
ZEPHYR_HAL_ETHOS_U_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/ethos_u
ZEPHYR_HAL_GIGADEVICE_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/gigadevice
ZEPHYR_HAL_INFINEON_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/infineon
ZEPHYR_HAL_INTEL_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/intel
ZEPHYR_MICROCHIP_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/microchip
ZEPHYR_HAL_NORDIC_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/nordic
ZEPHYR_NUVOTON_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/nuvoton
ZEPHYR_HAL_NXP_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/nxp
ZEPHYR_OPENISA_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/openisa
ZEPHYR_QUICKLOGIC_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/quicklogic
ZEPHYR_HAL_REALTEK_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/realtek
ZEPHYR_HAL_RENESAS_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/renesas
ZEPHYR_HAL_RPI_PICO_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/rpi_pico
ZEPHYR_HAL_SIFLI_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/sifli
ZEPHYR_HAL_SILABS_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/silabs
ZEPHYR_HAL_ST_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/st
ZEPHYR_HAL_STM32_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/stm32
ZEPHYR_HAL_TDK_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/tdk
ZEPHYR_HAL_TELINK_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/telink
ZEPHYR_TI_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/ti
ZEPHYR_HAL_WCH_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/wch
ZEPHYR_HAL_WURTHELEKTRONIK_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/wurthelektronik
ZEPHYR_XTENSA_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/xtensa
ZEPHYR_HOSTAP_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/hostap
ZEPHYR_LIBLC3_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/liblc3
ZEPHYR_LIBMCTP_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/libmctp
ZEPHYR_LIBMETAL_MODULE_DIR=/Users/wijnand/zephyrproject/modules/hal/libmetal
ZEPHYR_LIBSBC_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/libsbc
ZEPHYR_LITTLEFS_MODULE_DIR=/Users/wijnand/zephyrproject/modules/fs/littlefs
ZEPHYR_LORA_BASICS_MODEM_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/lora-basics-modem
ZEPHYR_LORAMAC_NODE_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/loramac-node
ZEPHYR_LVGL_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/gui/lvgl
ZEPHYR_MBEDTLS_MODULE_DIR=/Users/wijnand/zephyrproject/modules/crypto/mbedtls
ZEPHYR_MBEDTLS_3_6_MODULE_DIR=/Users/wijnand/zephyrproject/modules/crypto/mbedtls-3.6
ZEPHYR_MCUBOOT_MODULE_DIR=/Users/wijnand/zephyrproject/bootloader/mcuboot
ZEPHYR_MIPI_SYS_T_MODULE_DIR=/Users/wijnand/zephyrproject/modules/debug/mipi-sys-t
ZEPHYR_NANOPB_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/nanopb
ZEPHYR_NRF_WIFI_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/nrf_wifi
ZEPHYR_OPEN_AMP_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/open-amp
ZEPHYR_OPENTHREAD_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/openthread
ZEPHYR_PERCEPIO_MODULE_DIR=/Users/wijnand/zephyrproject/modules/debug/percepio
ZEPHYR_PICOLIBC_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/picolibc
ZEPHYR_PSA_ARCH_TESTS_MODULE_DIR=/Users/wijnand/zephyrproject/modules/tee/tf-m/psa-arch-tests
ZEPHYR_SEGGER_MODULE_DIR=/Users/wijnand/zephyrproject/modules/debug/segger
ZEPHYR_TF_M_TESTS_MODULE_DIR=/Users/wijnand/zephyrproject/modules/tee/tf-m/tf-m-tests
ZEPHYR_TF_PSA_CRYPTO_MODULE_DIR=/Users/wijnand/zephyrproject/modules/crypto/mbedtls/tf-psa-crypto
ZEPHYR_TRUSTED_FIRMWARE_A_MODULE_DIR=/Users/wijnand/zephyrproject/modules/tee/tf-a/trusted-firmware-a
ZEPHYR_TRUSTED_FIRMWARE_M_MODULE_DIR=/Users/wijnand/zephyrproject/modules/tee/tf-m/trusted-firmware-m
ZEPHYR_UOSCORE_UEDHOC_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/uoscore-uedhoc
ZEPHYR_ZCBOR_MODULE_DIR=/Users/wijnand/zephyrproject/modules/lib/zcbor
ZEPHYR_NRF_HW_MODELS_MODULE_DIR=/Users/wijnand/zephyrproject/modules/bsim_hw_models/nrf_hw_models

127
build/Kconfig/soc/Kconfig Normal file
View File

@@ -0,0 +1,127 @@
# Load Zephyr SoC Kconfig descriptions.
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xen/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/k3/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/synaptics/sr100/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/silabs/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sensry/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/rockchip/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/or1k/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/malta/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/rw/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nordic/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/neorv32/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/native/inf_clock/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/wildcat_lake/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/lakemont/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/atom/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/focaltech/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ene/kb1200/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/elan/em32f967/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/egis/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/blackberry/qnxhv_vm/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/bflb/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/aspeed/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/arm/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/arm/beetle/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/antmicro/myra/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/andestech/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ambiq/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/allwinner/sun8i_h3/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/aesc/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig"

View File

@@ -0,0 +1,127 @@
# Load Zephyr SoC defconfig descriptions.
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xen/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/k3/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/synaptics/sr100/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/silabs/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sensry/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/rockchip/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/or1k/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/malta/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/rw/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nordic/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/neorv32/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/native/inf_clock/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/wildcat_lake/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/atom/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/focaltech/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/elan/em32f967/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/egis/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/blackberry/qnxhv_vm/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/bflb/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/aspeed/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/arm/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/arm/beetle/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/antmicro/myra/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/andestech/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ambiq/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/allwinner/sun8i_h3/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/aesc/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig"

View File

@@ -0,0 +1,127 @@
# Load Zephyr SoC defconfig descriptions.
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xen/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/k3/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/synaptics/sr100/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/silabs/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sensry/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/rockchip/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/or1k/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/malta/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/rw/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nordic/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/neorv32/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/native/inf_clock/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/wildcat_lake/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/atom/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/focaltech/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/elan/em32f967/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/egis/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/blackberry/qnxhv_vm/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/bflb/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/aspeed/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/arm/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/arm/beetle/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/antmicro/myra/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/andestech/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ambiq/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/allwinner/sun8i_h3/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/aesc/Kconfig.defconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig"

View File

@@ -0,0 +1,127 @@
# Load SoC Kconfig descriptions.
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xen/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/k3/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/synaptics/sr100/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/silabs/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sensry/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/rockchip/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/or1k/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/malta/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/rw/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nordic/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/neorv32/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/native/inf_clock/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/wildcat_lake/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/atom/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/focaltech/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/elan/em32f967/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/egis/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/blackberry/qnxhv_vm/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/bflb/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/aspeed/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/arm/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/arm/beetle/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/antmicro/myra/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/andestech/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ambiq/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/allwinner/sun8i_h3/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/aesc/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.soc"

View File

@@ -0,0 +1,127 @@
# Load SoC Kconfig descriptions.
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xen/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/k3/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/synaptics/sr100/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/silabs/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sensry/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/rockchip/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/or1k/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/malta/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/rw/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nordic/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/neorv32/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/native/inf_clock/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/wildcat_lake/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/atom/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/focaltech/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/elan/em32f967/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/egis/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/blackberry/qnxhv_vm/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/bflb/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/aspeed/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/arm/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/arm/beetle/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/antmicro/myra/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/andestech/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ambiq/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/allwinner/sun8i_h3/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/aesc/Kconfig.soc"
osource "/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.soc"

View File

@@ -0,0 +1,127 @@
# Load Sysbuild SoC Kconfig descriptions.
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xen/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/k3/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/synaptics/sr100/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/silabs/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sensry/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/rockchip/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/or1k/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/malta/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/rw/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nordic/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/neorv32/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/native/inf_clock/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/wildcat_lake/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/atom/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/focaltech/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/elan/em32f967/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/egis/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/blackberry/qnxhv_vm/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/bflb/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/aspeed/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/arm/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/arm/beetle/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/antmicro/myra/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/andestech/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ambiq/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/allwinner/sun8i_h3/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/aesc/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.sysbuild"

View File

@@ -0,0 +1,127 @@
# Load Sysbuild SoC Kconfig descriptions.
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xen/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/k3/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/synaptics/sr100/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/silabs/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sensry/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/rockchip/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/or1k/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/malta/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/rw/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nordic/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/neorv32/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/native/inf_clock/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/wildcat_lake/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/atom/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/focaltech/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/elan/em32f967/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/egis/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/blackberry/qnxhv_vm/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/bflb/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/aspeed/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/arm/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/arm/beetle/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/antmicro/myra/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/andestech/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ambiq/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/allwinner/sun8i_h3/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/aesc/Kconfig.sysbuild"
osource "/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig.sysbuild"

View File

@@ -0,0 +1,127 @@
# Load Zephyr SoC Kconfig descriptions.
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xlnx/versal/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/xen/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/wch/ch32v/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/simplelink/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/mspm0/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ti/k3/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/telink/tlsr/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/synaptics/sr100/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/st/stm32/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/hsdk/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/emsk/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/emsdp/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/silabs/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sifli/sf32/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/sensry/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/rockchip/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rz/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rx/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/rcar/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/renesas/ra/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/fingerprint/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/ec/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/bee/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/realtek/ameba/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/or1k/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/qemu/malta/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/s32/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/rw/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/mcx/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/lpc/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nxp/imx/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/nordic/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/neorv32/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/native/inf_clock/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic64/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/miv/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/microchip/mec/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/litex/litex_vexriscv/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ite/ec/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/wildcat_lake/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/lakemont/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/atom/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/psoc4/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/edge/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat3/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gd/gd32/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/focaltech/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/espressif/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ene/kb1200/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ene/kb106x/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/elan/em32f967/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/egis/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/swerv/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/blackberry/qnxhv_vm/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/bflb/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam0/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/atmel/sam/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/aspeed/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/arm/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/arm/beetle/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/antmicro/myra/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/andestech/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/ambiq/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/allwinner/sun8i_h3/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/alif/ensemble/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/aesc/Kconfig"
osource "/Users/wijnand/zephyrproject/zephyr/soc/adi/max32/Kconfig"

BIN
build/app/libapp.a Normal file

Binary file not shown.

9701
build/build.ninja Normal file

File diff suppressed because one or more lines are too long

63
build/build_info.yml Normal file
View File

@@ -0,0 +1,63 @@
cmake:
application:
configuration-dir: '/Volumes/External/Work/radio/loramodem/app'
source-dir: '/Volumes/External/Work/radio/loramodem/app'
board:
name: 'xiao_esp32s3'
path:
- '/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3'
qualifiers: 'esp32s3/procpu'
revision: ''
devicetree:
bindings-dirs:
- '/Volumes/External/Work/radio/loramodem/dts/bindings'
- '/Users/wijnand/zephyrproject/zephyr/dts/bindings'
files:
- '/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu.dts'
- '/Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay'
include-dirs:
- '/Volumes/External/Work/radio/loramodem/dts'
- '/Users/wijnand/zephyrproject/modules/hal/ambiq/dts'
- '/Users/wijnand/zephyrproject/modules/hal/atmel/include'
- '/Users/wijnand/zephyrproject/modules/hal/bouffalolab/include'
- '/Users/wijnand/zephyrproject/modules/hal/bouffalolab/include/zephyr'
- '/Users/wijnand/zephyrproject/modules/hal/gigadevice/include'
- '/Users/wijnand/zephyrproject/modules/hal/microchip/include'
- '/Users/wijnand/zephyrproject/modules/hal/microchip/dts'
- '/Users/wijnand/zephyrproject/modules/hal/nuvoton/dts'
- '/Users/wijnand/zephyrproject/modules/hal/nxp/dts'
- '/Users/wijnand/zephyrproject/modules/hal/stm32/dts'
- '/Users/wijnand/zephyrproject/modules/hal/ti/dts'
- '/Users/wijnand/zephyrproject/zephyr/include'
- '/Users/wijnand/zephyrproject/zephyr/include/zephyr'
- '/Users/wijnand/zephyrproject/zephyr/dts/common'
- '/Users/wijnand/zephyrproject/zephyr/dts/vendor'
- '/Users/wijnand/zephyrproject/zephyr/dts/rx'
- '/Users/wijnand/zephyrproject/zephyr/dts/x86'
- '/Users/wijnand/zephyrproject/zephyr/dts/xtensa'
- '/Users/wijnand/zephyrproject/zephyr/dts/sparc'
- '/Users/wijnand/zephyrproject/zephyr/dts/riscv'
- '/Users/wijnand/zephyrproject/zephyr/dts/posix'
- '/Users/wijnand/zephyrproject/zephyr/dts/arm64'
- '/Users/wijnand/zephyrproject/zephyr/dts/arm'
- '/Users/wijnand/zephyrproject/zephyr/dts/arc'
- '/Users/wijnand/zephyrproject/zephyr/dts'
user-files:
- '/Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay'
kconfig:
files:
- '/Users/wijnand/zephyrproject/zephyr/boards/seeed/xiao_esp32s3/xiao_esp32s3_procpu_defconfig'
- '/Volumes/External/Work/radio/loramodem/app/prj.conf'
user-files:
- '/Volumes/External/Work/radio/loramodem/app/prj.conf'
toolchain:
name: 'zephyr'
path: '/Users/wijnand/zephyr-sdk-1.0.0'
zephyr:
version: '4.4.0-rc1'
zephyr-base: '/Users/wijnand/zephyrproject/zephyr'
version: '0.1.0'
west:
command: '/Users/wijnand/zephyrproject/.venv/bin/west build --pristine -b xiao_esp32s3/esp32s3/procpu /Volumes/External/Work/radio/loramodem/app -- -DDTC_OVERLAY_FILE=/Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay'
topdir: '/Users/wijnand/zephyrproject'
version: '1.5.0'

5
build/build_info.yml.bak Normal file
View File

@@ -0,0 +1,5 @@
west:
command: /Users/wijnand/zephyrproject/.venv/bin/west build --pristine -b xiao_esp32s3/esp32s3/procpu
/Volumes/External/Work/radio/loramodem/app -- -DDTC_OVERLAY_FILE=/Volumes/External/Work/radio/loramodem/boards/seeed/xiao_wio_sx1262/xiao_wio_sx1262.overlay
topdir: /Users/wijnand/zephyrproject
version: 1.5.0

66
build/cmake_install.cmake Normal file
View File

@@ -0,0 +1,66 @@
# Install script for directory: /Volumes/External/Work/radio/loramodem/app
# 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 path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("/Volumes/External/Work/radio/loramodem/build/zephyr/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
if(CMAKE_INSTALL_COMPONENT)
if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$")
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
else()
string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}")
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt")
unset(CMAKE_INST_COMP_HASH)
endif()
else()
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

1388
build/compile_commands.json Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,45 @@
# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/acpica
# 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 path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/acpica/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,45 @@
# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/adi
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/adi/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,50 @@
# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/atmel/asf
# 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 path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("/Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,50 @@
# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/atmel/asf/common
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("/Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common/components/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,50 @@
# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/atmel/asf/common/components
# 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 path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("/Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common/components/wifi/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common/components/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,45 @@
# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/atmel/asf/common/components/wifi
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/common/components/wifi/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,50 @@
# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/atmel
# 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 path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("/Volumes/External/Work/radio/loramodem/build/modules/atmel/asf/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/atmel/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,45 @@
# Install script for directory: /Users/wijnand/zephyrproject/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 path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/cmsis-dsp/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,45 @@
# Install script for directory: /Users/wijnand/zephyrproject/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 path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/cmsis-nn/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,45 @@
# Install script for directory: /Users/wijnand/zephyrproject/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 path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/cmsis/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,45 @@
# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/cmsis_6
# 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 path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/cmsis_6/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,45 @@
# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/dhara
# 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 path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/dhara/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,45 @@
# Install script for directory: /Users/wijnand/zephyrproject/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 path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/fatfs/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,45 @@
# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/hal_afbr
# 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 path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/hal_afbr/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,45 @@
# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/ambiq
# 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 path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/hal_ambiq/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,45 @@
# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/hal_bouffalolab
# 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 path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/hal_bouffalolab/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,50 @@
# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/hal_espressif
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("/Volumes/External/Work/radio/loramodem/build/modules/hal_espressif/hal_espressif/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/hal_espressif/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,50 @@
# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/espressif/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 path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("/Volumes/External/Work/radio/loramodem/build/modules/hal_espressif/hal_espressif/esp32s3/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/hal_espressif/hal_espressif/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,45 @@
# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/espressif/zephyr/esp32s3
# 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 path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/hal_espressif/hal_espressif/esp32s3/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,45 @@
# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/hal_ethos_u
# 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 path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/hal_ethos_u/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,45 @@
# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/hal_gigadevice
# 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 path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/hal_gigadevice/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,45 @@
# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/hal_infineon
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/hal_infineon/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,45 @@
# Install script for directory: /Users/wijnand/zephyrproject/modules/hal/intel/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 path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/hal_intel/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,45 @@
# Install script for directory: /Users/wijnand/zephyrproject/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 path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/hal_nordic/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

View File

@@ -0,0 +1,50 @@
# Install script for directory: /Users/wijnand/zephyrproject/zephyr/modules/hal_nxp
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/Users/wijnand/zephyr-sdk-1.0.0/gnu/xtensa-espressif_esp32s3_zephyr-elf/bin/xtensa-espressif_esp32s3_zephyr-elf-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("/Volumes/External/Work/radio/loramodem/build/modules/hal_nxp/hal_nxp/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/Volumes/External/Work/radio/loramodem/build/modules/hal_nxp/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

Some files were not shown because too many files have changed in this diff Show More